1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 00:38:06 +00:00

fix biome ignore

This commit is contained in:
thatmattlove 2024-06-16 17:20:14 -04:00
parent 7eb8d8e925
commit bbba29546c

View file

@ -1,47 +1,48 @@
{ {
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json", "$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"organizeImports": { "organizeImports": {
"enabled": true "enabled": true
}, },
"files": { "files": {
"ignore": [ "ignore": [
"node_modules", "node_modules",
"dist", "dist",
".next/", ".next/",
"favicon-formats.ts", "out/",
"custom.*[js, html]", "favicon-formats.ts",
"hyperglass.json" "custom.*[js, html]",
] "hyperglass.json"
}, ]
"linter": { },
"enabled": true, "linter": {
"rules": { "enabled": true,
"recommended": true, "rules": {
"complexity": { "recommended": true,
"noUselessTypeConstraint": "off", "complexity": {
"noBannedTypes": "off" "noUselessTypeConstraint": "off",
}, "noBannedTypes": "off"
"style": { },
"noInferrableTypes": "off", "style": {
"noNonNullAssertion": "off" "noInferrableTypes": "off",
}, "noNonNullAssertion": "off"
"correctness": { },
"useExhaustiveDependencies": "off" "correctness": {
} "useExhaustiveDependencies": "off"
} }
}, }
"formatter": { },
"indentStyle": "space",
"lineWidth": 100,
"indentWidth": 2
},
"javascript": {
"formatter": { "formatter": {
"quoteStyle": "single", "indentStyle": "space",
"bracketSpacing": true, "lineWidth": 100,
"semicolons": "always", "indentWidth": 2
"arrowParentheses": "asNeeded", },
"trailingComma": "all" "javascript": {
"formatter": {
"quoteStyle": "single",
"bracketSpacing": true,
"semicolons": "always",
"arrowParentheses": "asNeeded",
"trailingComma": "all"
}
} }
}
} }