Files
Oxicloud/biome.json
T

64 lines
1.5 KiB
JSON
Raw Normal View History

{
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
2026-04-14 12:35:10 +02:00
"files": {
"includes": ["static/**/*.js", "static/**/*.css", "static/**/*.json", "!static/js/vendors"]
2026-04-14 12:35:10 +02:00
},
"formatter": {
2026-04-14 12:35:10 +02:00
"enabled": true,
"indentStyle": "space",
"indentWidth": 4,
"lineWidth": 160,
"lineEnding": "lf"
},
"linter": {
2026-04-14 12:35:10 +02:00
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedVariables": "warn",
2026-04-30 02:02:27 +02:00
"noUndeclaredVariables": "error",
"noUnreachable": "warn",
"noUnsafeFinally": "error"
},
"nursery": {
"useExplicitType": "error"
},
"security": {
"noGlobalEval": "error"
2026-04-14 12:35:10 +02:00
},
"style": {
"noDescendingSpecificity": "off"
},
"complexity": {
"noImportantStyles": "off"
}
}
},
2026-04-14 12:35:10 +02:00
"javascript": {
"formatter": {
"indentStyle": "space",
"indentWidth": 4,
"quoteStyle": "single",
"semicolons": "always",
"trailingCommas": "none",
"bracketSameLine": false,
"bracketSpacing": true,
"operatorLinebreak": "after"
}
},
"css": {
"linter": {
"enabled": true
},
"formatter": {
"enabled": true
}
}
}