|
| 1 | +{ |
| 2 | + "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", |
| 3 | + "css": { |
| 4 | + "formatter": { |
| 5 | + "enabled": true, |
| 6 | + "indentStyle": "space", |
| 7 | + "quoteStyle": "single" |
| 8 | + }, |
| 9 | + "linter": { "enabled": true } |
| 10 | + }, |
| 11 | + "files": { "ignore": ["webroot/index.js"] }, |
| 12 | + "formatter": { "indentStyle": "space" }, |
| 13 | + "javascript": { |
| 14 | + "formatter": { |
| 15 | + "arrowParentheses": "asNeeded", |
| 16 | + "bracketSpacing": false, |
| 17 | + "indentStyle": "space", |
| 18 | + "jsxQuoteStyle": "single", |
| 19 | + "quoteStyle": "single", |
| 20 | + "semicolons": "asNeeded", |
| 21 | + "trailingCommas": "none" |
| 22 | + } |
| 23 | + }, |
| 24 | + "json": { |
| 25 | + "formatter": { "indentStyle": "space" }, |
| 26 | + "parser": { "allowComments": true } |
| 27 | + }, |
| 28 | + "linter": { |
| 29 | + "rules": { |
| 30 | + "performance": { "noDelete": "off" }, |
| 31 | + "complexity": { "noThisInStatic": "off" }, |
| 32 | + "style": { |
| 33 | + "noInferrableTypes": "off", |
| 34 | + "noNonNullAssertion": "off", |
| 35 | + "noParameterAssign": "off", |
| 36 | + "useNumberNamespace": "off", |
| 37 | + // https://github.com/biomejs/biome/discussions/3106 |
| 38 | + "useImportType": "warn", |
| 39 | + "useTemplate": "warn", |
| 40 | + "noUnusedTemplateLiteral": "warn" |
| 41 | + }, |
| 42 | + "suspicious": { |
| 43 | + "noAssignInExpressions": "off", |
| 44 | + "noImplicitAnyLet": "off" |
| 45 | + } |
| 46 | + } |
| 47 | + }, |
| 48 | + "vcs": { "enabled": true, "clientKind": "git" } |
| 49 | +} |
0 commit comments