{
"$schema": "https://biomejs.dev/schemas/2.4.16/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": true,
"includes": ["src/**", "!src/index.css", "!src/routeTree.gen.ts"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": "warn",
"noUnusedVariables": "warn",
"useExhaustiveDependencies": "off",
"noUnusedFunctionParameters": "off"
},
"suspicious": {
"noArrayIndexKey": "off",
"noExplicitAny": "off"
},
"a11y": {
"noStaticElementInteractions": "off",
"useKeyWithClickEvents": "off",
"noLabelWithoutControl": "off",
"noSvgWithoutTitle": "off",
"useAriaPropsSupportedByRole": "off"
},
"security": {
"noDangerouslySetInnerHtml": "off"
},
"style": {
"useTemplate": "warn",
"noNonNullAssertion": "off"
}
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "asNeeded"
}
}
}