Created
November 7, 2024 09:37
-
-
Save spawnrider/a9d766cc881c01a7b4cc5d0c5be09c2b to your computer and use it in GitHub Desktop.
Biome configuration file for Web projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"formatter": { | |
"enabled": true, | |
"formatWithErrors": false, | |
"indentStyle": "space", | |
"indentWidth": 2, | |
"lineEnding": "crlf", | |
"lineWidth": 120, | |
"attributePosition": "auto" | |
}, | |
"organizeImports": { | |
"enabled": true | |
}, | |
"linter": { | |
"enabled": true, | |
"rules": { | |
"recommended": true, | |
"correctness": { | |
"noUnusedImports": "warn" | |
}, | |
"style": { | |
"useImportType": "off" | |
} | |
} | |
}, | |
"javascript": { | |
"formatter": { | |
"jsxQuoteStyle": "double", | |
"quoteProperties": "asNeeded", | |
"trailingCommas": "none", | |
"trailingComma": "none", | |
"semicolons": "always", | |
"arrowParentheses": "asNeeded", | |
"bracketSpacing": true, | |
"bracketSameLine": false, | |
"quoteStyle": "single", | |
"attributePosition": "auto" | |
} | |
}, | |
"overrides": [{ | |
"include": ["*.json"], | |
"formatter": { | |
"indentWidth": 2 | |
} | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment