mirror of https://github.com/FOME-Tech/wiki.git
53 lines
947 B
JSON
53 lines
947 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.1.2/schema.json",
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"files": {
|
|
"ignore": [
|
|
".devcontainer",
|
|
".vscode",
|
|
"node_modules",
|
|
".docusaurus",
|
|
"build",
|
|
"pdf",
|
|
"biome.json"
|
|
]
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"all": true,
|
|
"style": {
|
|
"all": true,
|
|
"useEnumInitializers": "off",
|
|
"noNonNullAssertion": "off"
|
|
},
|
|
"suspicious": {
|
|
"all": true,
|
|
"noConsoleLog": "off"
|
|
},
|
|
"nursery": {
|
|
"all": true,
|
|
"noDefaultExport": "off"
|
|
},
|
|
"complexity": {
|
|
"all": true,
|
|
"noForEach": "off"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"lineWidth": 100,
|
|
"indentWidth": 2
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"trailingComma": "all"
|
|
}
|
|
}
|
|
}
|