| 12345678910111213141516171819202122232425262728293031 |
- {
- "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
- "organizeImports": {
- "enabled": true
- },
- "linter": {
- "enabled": true,
- "rules": {
- "recommended": true,
- "correctness": {
- "noUnusedVariables": "warn",
- "noUnusedImports": "warn"
- },
- "suspicious": {
- "noExplicitAny": "warn"
- }
- }
- },
- "formatter": {
- "enabled": true,
- "indentStyle": "space",
- "indentWidth": 2,
- "lineWidth": 100
- },
- "javascript": {
- "formatter": {
- "semicolons": "asNeeded",
- "quoteStyle": "single"
- }
- }
- }
|