1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
- "files": {
- "includes": ["**", "!dist/**", "!node_modules/**"],
- "ignoreUnknown": true
- },
- "vcs": {
- "clientKind": "git",
- "enabled": false,
- "useIgnoreFile": true
- },
- "assist": {
- "enabled": true,
- "actions": {
- "recommended": true
- }
- },
- "formatter": {
- "bracketSameLine": false,
- "bracketSpacing": true,
- "enabled": true,
- "formatWithErrors": false,
- "indentStyle": "space",
- "indentWidth": 2,
- "lineEnding": "lf",
- "lineWidth": 120
- },
- "linter": {
- "enabled": true,
- "rules": {
- "recommended": true
- }
- },
- "javascript": {
- "formatter": {
- "arrowParentheses": "always",
- "jsxQuoteStyle": "double",
- "quoteProperties": "asNeeded",
- "quoteStyle": "double",
- "semicolons": "always",
- "trailingCommas": "none"
- }
- }
- }
|