|
| 1 | +{ |
| 2 | + "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", |
| 3 | + "vcs": { |
| 4 | + "enabled": true, |
| 5 | + "clientKind": "git", |
| 6 | + "useIgnoreFile": true |
| 7 | + }, |
| 8 | + "files": { |
| 9 | + "ignoreUnknown": false |
| 10 | + }, |
| 11 | + "formatter": { |
| 12 | + "enabled": true, |
| 13 | + "indentStyle": "space", |
| 14 | + "lineWidth": 100, |
| 15 | + "indentWidth": 2 |
| 16 | + }, |
| 17 | + "javascript": { |
| 18 | + "jsxRuntime": "reactClassic", |
| 19 | + "formatter": { |
| 20 | + "quoteStyle": "single" |
| 21 | + } |
| 22 | + }, |
| 23 | + "assist": { |
| 24 | + "actions": { |
| 25 | + "source": { |
| 26 | + "organizeImports": "off" |
| 27 | + } |
| 28 | + } |
| 29 | + }, |
| 30 | + "linter": { |
| 31 | + "rules": { |
| 32 | + "style": { |
| 33 | + "useNodejsImportProtocol": "off", |
| 34 | + "noNonNullAssertion": "off" |
| 35 | + }, |
| 36 | + "complexity": { |
| 37 | + "useDateNow": "off", |
| 38 | + "noImportantStyles": "off", |
| 39 | + "useOptionalChain": "off" |
| 40 | + }, |
| 41 | + "correctness": { |
| 42 | + "useUniqueElementIds": "off", |
| 43 | + "useExhaustiveDependencies": "off" |
| 44 | + }, |
| 45 | + "suspicious": { |
| 46 | + "noTsIgnore": "off", |
| 47 | + "noExplicitAny": "off", |
| 48 | + "noArrayIndexKey": "off", |
| 49 | + "noConfusingVoidType": "off", |
| 50 | + "noNonNullAssertedOptionalChain": "off", |
| 51 | + "noThenProperty": "off", |
| 52 | + "noTemplateCurlyInString": "off", |
| 53 | + "useIterableCallbackReturn": "off" |
| 54 | + }, |
| 55 | + "performance": { |
| 56 | + "noAccumulatingSpread": "off", |
| 57 | + "noDynamicNamespaceImportAccess": "off" |
| 58 | + }, |
| 59 | + "a11y": { |
| 60 | + "noLabelWithoutControl": "off", |
| 61 | + "useFocusableInteractive": "off", |
| 62 | + "useKeyWithClickEvents": "off", |
| 63 | + "useSemanticElements": "off", |
| 64 | + "noStaticElementInteractions": "off", |
| 65 | + "useAriaPropsSupportedByRole": "off", |
| 66 | + "useAriaPropsForRole": "off" |
| 67 | + } |
| 68 | + } |
| 69 | + }, |
| 70 | + "css": { |
| 71 | + "formatter": { |
| 72 | + "quoteStyle": "single" |
| 73 | + } |
| 74 | + } |
| 75 | +} |
0 commit comments