mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
41 lines
886 B
JSON
41 lines
886 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"files": {
|
|
"ignore": ["node_modules", "dist", ".next/", "favicon-formats.ts", "custom.*[js, html]"]
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"complexity": {
|
|
"noUselessTypeConstraint": "off",
|
|
"noBannedTypes": "off"
|
|
},
|
|
"style": {
|
|
"noInferrableTypes": "off",
|
|
"noNonNullAssertion": "off"
|
|
},
|
|
"correctness": {
|
|
"useExhaustiveDependencies": "off"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"indentStyle": "space",
|
|
"lineWidth": 100,
|
|
"indentWidth": 2
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"bracketSpacing": true,
|
|
"semicolons": "always",
|
|
"arrowParentheses": "asNeeded",
|
|
"trailingComma": "all"
|
|
}
|
|
}
|
|
}
|