webapp/biome.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2024-02-03 19:40:33 +00:00
{
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"organizeImports": {
"enabled": false
},
"formatter": {
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 108
},
"javascript": {
"formatter": {
"semicolons": "asNeeded",
"quoteStyle": "single",
"trailingComma": "all",
"enabled": true,
"jsxQuoteStyle": "double",
"arrowParentheses": "always"
}
},
"linter": {
"enabled": true,
"rules": {
2024-02-04 09:03:15 +00:00
"recommended": true,
2024-02-03 19:40:33 +00:00
"complexity": {
2024-02-04 09:03:15 +00:00
"noForEach": "off",
"useOptionalChain": "warn"
},
"a11y": {
"useKeyWithClickEvents": "off",
"useKeyWithMouseEvents": "off",
"useAnchorContent": "off",
"useValidAnchor": "off",
"useMediaCaption": "off",
"useAltText": "off",
"useButtonType": "off",
"noRedundantAlt": "off",
"noSvgWithoutTitle": "off"
2024-02-03 19:40:33 +00:00
},
"nursery": {
"useImportRestrictions": "off"
},
"style": {
2024-02-04 09:03:15 +00:00
"useNamingConvention": "off",
"noUnusedTemplateLiteral": "off"
2024-02-03 19:40:33 +00:00
},
"suspicious": {
2024-02-04 09:03:15 +00:00
"noConsoleLog": "off",
"noAssignInExpressions": "off"
2024-02-03 19:40:33 +00:00
}
}
}
}