mirror of
https://github.com/smartfrigde/armcord.git
synced 2026-06-23 05:25:43 +00:00
36 lines
1 KiB
JSON
36 lines
1 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.16/schema.json",
|
|
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"includes": ["**", "!**/assets/app/js"]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"useEditorconfig": true,
|
|
"formatWithErrors": false,
|
|
"indentStyle": "space",
|
|
"indentWidth": 4,
|
|
"lineEnding": "lf",
|
|
"lineWidth": 120,
|
|
"attributePosition": "auto",
|
|
"bracketSpacing": true
|
|
},
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"complexity": {
|
|
"noForEach": "off"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "off",
|
|
"noUselessElse": "off" // NOTE - This rule seems broken
|
|
},
|
|
"a11y": {
|
|
"useKeyWithClickEvents": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|