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",
|
|
|
|
"noNonNullAssertion": "off"
|
|
|
|
},
|
|
|
|
"suspicious": {
|
|
|
|
"all": true,
|
|
|
|
"noConsoleLog": "off"
|
|
|
|
},
|
|
|
|
"nursery": {
|
2023-12-01 02:17:37 -08:00
|
|
|
"all": true,
|
|
|
|
"noDefaultExport": "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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|