wiki/biome.json

55 lines
1023 B
JSON
Raw Normal View History

2023-09-14 13:19:57 -07:00
{
"$schema": "https://biomejs.dev/schemas/1.1.2/schema.json",
"organizeImports": {
"enabled": true
},
"files": {
2023-12-01 02:17:37 -08:00
"ignore": [
".devcontainer",
".vscode",
"node_modules",
".docusaurus",
"build",
2023-12-01 02:25:10 -08:00
"pdf",
"biome.json"
2023-12-01 02:17:37 -08:00
]
2023-09-14 13:19:57 -07:00
},
"linter": {
"enabled": true,
"rules": {
"all": true,
"style": {
"all": true,
"useEnumInitializers": "off",
2024-01-16 02:34:53 -08:00
"noNonNullAssertion": "off",
"noDefaultExport": "off"
2023-09-14 13:19:57 -07:00
},
"suspicious": {
"all": true,
"noConsoleLog": "off"
},
"nursery": {
2023-12-01 02:17:37 -08:00
"all": true,
2024-01-16 02:34:53 -08:00
"noNodejsModules": "off",
"useNodejsImportProtocol": "off"
2023-09-14 13:19:57 -07:00
},
"complexity": {
"all": true,
"noForEach": "off"
}
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"lineWidth": 100,
2023-10-26 00:45:36 -07:00
"indentWidth": 2
2023-09-14 13:19:57 -07:00
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingComma": "all"
}
}
}