Uecko_ERP/biome.json

56 lines
1.4 KiB
JSON
Raw Normal View History

2025-05-04 20:06:57 +00:00
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false },
"files": { "ignoreUnknown": false, "ignore": ["dist"] },
"formatter": {
"enabled": true,
"useEditorconfig": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 100,
"attributePosition": "auto",
"bracketSpacing": true
},
"organizeImports": { "enabled": true },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
2025-05-17 19:12:01 +00:00
"correctness": {
2025-05-19 16:15:01 +00:00
"useExhaustiveDependencies": "info",
2025-06-24 18:38:57 +00:00
"noUnreachable": "warn"
2025-05-17 19:12:01 +00:00
},
2025-05-04 20:06:57 +00:00
"complexity": {
2025-05-26 10:38:45 +00:00
"noForEach": "off",
2025-05-04 20:06:57 +00:00
"noBannedTypes": "info",
2025-07-17 18:04:00 +00:00
"noUselessFragments": "off",
2025-09-26 18:09:14 +00:00
"useOptionalChain": "off",
"noThisInStatic": "off"
2025-05-04 20:06:57 +00:00
},
"suspicious": {
2025-05-29 11:15:28 +00:00
"noImplicitAnyLet": "info",
2025-05-04 20:06:57 +00:00
"noExplicitAny": "info"
},
"style": {
2025-06-26 11:32:55 +00:00
"useImportType": "off",
"noNonNullAssertion": "info"
2025-05-04 20:06:57 +00:00
}
}
},
"javascript": {
"formatter": {
"jsxQuoteStyle": "single",
"quoteProperties": "asNeeded",
"trailingCommas": "es5",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSameLine": false,
"quoteStyle": "double",
"attributePosition": "auto",
"bracketSpacing": true
}
}
}