|
| 1 | +{ |
| 2 | + "$schema": "https://biomejs.dev/schemas/2.3.13/schema.json", |
| 3 | + "formatter": { |
| 4 | + "enabled": true, |
| 5 | + "formatWithErrors": false, |
| 6 | + "indentStyle": "space", |
| 7 | + "indentWidth": 4, |
| 8 | + "lineEnding": "lf", |
| 9 | + "lineWidth": 100, |
| 10 | + "attributePosition": "auto" |
| 11 | + }, |
| 12 | + "assist": { "actions": { "source": { "organizeImports": "on" } } }, |
| 13 | + "linter": { |
| 14 | + "enabled": true, |
| 15 | + "rules": { |
| 16 | + "recommended": true, |
| 17 | + "style": { |
| 18 | + "useImportType": "off", |
| 19 | + "noEnum": "error" |
| 20 | + }, |
| 21 | + "correctness": { |
| 22 | + "noUnusedVariables": "error", |
| 23 | + "noUnusedImports": "error", |
| 24 | + "noUnusedPrivateClassMembers": "error", |
| 25 | + "noUnusedFunctionParameters": "error" |
| 26 | + }, |
| 27 | + "nursery": {}, |
| 28 | + "performance": { |
| 29 | + "noNamespaceImport": "error" |
| 30 | + } |
| 31 | + } |
| 32 | + }, |
| 33 | + "javascript": { |
| 34 | + "formatter": { |
| 35 | + "jsxQuoteStyle": "double", |
| 36 | + "quoteProperties": "asNeeded", |
| 37 | + "trailingCommas": "all", |
| 38 | + "semicolons": "asNeeded", |
| 39 | + "arrowParentheses": "always", |
| 40 | + "bracketSpacing": true, |
| 41 | + "bracketSameLine": false, |
| 42 | + "quoteStyle": "single", |
| 43 | + "attributePosition": "auto" |
| 44 | + }, |
| 45 | + "parser": { |
| 46 | + "unsafeParameterDecoratorsEnabled": true |
| 47 | + } |
| 48 | + }, |
| 49 | + "vcs": { |
| 50 | + "enabled": true, |
| 51 | + "clientKind": "git", |
| 52 | + "useIgnoreFile": true |
| 53 | + }, |
| 54 | + "files": { |
| 55 | + "includes": ["**", "!**/package.json"] |
| 56 | + } |
| 57 | +} |
0 commit comments