2024-04-28 23:57:52 -06:00
|
|
|
{
|
2024-07-15 01:02:18 +02:00
|
|
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
2026-04-04 20:16:47 -06:00
|
|
|
"vcs": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"clientKind": "git",
|
|
|
|
|
"useIgnoreFile": true
|
|
|
|
|
},
|
2024-07-15 01:02:18 +02:00
|
|
|
"files": {
|
2026-01-31 03:19:29 -06:00
|
|
|
"ignoreUnknown": true,
|
2025-07-14 15:30:22 +09:00
|
|
|
"includes": [
|
|
|
|
|
"**",
|
|
|
|
|
"!**/.docker",
|
|
|
|
|
"!**/.next/**",
|
|
|
|
|
"!**/dist",
|
|
|
|
|
"!**/drizzle/**",
|
|
|
|
|
"!node_modules/**",
|
|
|
|
|
"!packages/server/package.json"
|
2026-04-04 20:16:47 -06:00
|
|
|
],
|
|
|
|
|
"maxSize": 2097152
|
2024-07-15 01:02:18 +02:00
|
|
|
},
|
2025-07-14 15:30:22 +09:00
|
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
2024-07-15 01:02:18 +02:00
|
|
|
"linter": {
|
|
|
|
|
"rules": {
|
2024-09-05 11:21:54 -06:00
|
|
|
"security": {
|
|
|
|
|
"noDangerouslySetInnerHtml": "off"
|
|
|
|
|
},
|
2024-07-15 01:02:18 +02:00
|
|
|
"complexity": {
|
|
|
|
|
"noUselessCatch": "off",
|
2025-07-28 01:12:43 -06:00
|
|
|
"noBannedTypes": "off",
|
|
|
|
|
"noUselessFragments": "off"
|
2024-07-15 01:02:18 +02:00
|
|
|
},
|
|
|
|
|
"correctness": {
|
|
|
|
|
"useExhaustiveDependencies": "off",
|
2025-02-22 18:03:12 -06:00
|
|
|
"noUnsafeOptionalChaining": "off",
|
|
|
|
|
"noUnusedImports": "error",
|
|
|
|
|
"noUnusedFunctionParameters": "error",
|
2025-08-16 20:18:08 -06:00
|
|
|
"noUnusedVariables": "off",
|
2025-08-02 13:20:00 -06:00
|
|
|
"useHookAtTopLevel": "off"
|
2024-07-15 01:02:18 +02:00
|
|
|
},
|
|
|
|
|
"style": {
|
2025-07-14 15:30:22 +09:00
|
|
|
"noNonNullAssertion": "off",
|
|
|
|
|
"noParameterAssign": "error",
|
|
|
|
|
"useAsConstAssertion": "error",
|
|
|
|
|
"useDefaultParameterLast": "error",
|
|
|
|
|
"useEnumInitializers": "error",
|
|
|
|
|
"useSelfClosingElements": "error",
|
|
|
|
|
"useSingleVarDeclarator": "error",
|
|
|
|
|
"noUnusedTemplateLiteral": "error",
|
|
|
|
|
"useNumberNamespace": "error",
|
|
|
|
|
"noInferrableTypes": "error",
|
|
|
|
|
"noUselessElse": "error"
|
2024-07-15 01:02:18 +02:00
|
|
|
},
|
|
|
|
|
"suspicious": {
|
|
|
|
|
"noArrayIndexKey": "off",
|
|
|
|
|
"noExplicitAny": "off",
|
2025-08-16 20:18:08 -06:00
|
|
|
"noRedeclare": "off",
|
|
|
|
|
"noTemplateCurlyInString": "off"
|
2024-07-15 01:02:18 +02:00
|
|
|
},
|
|
|
|
|
"a11y": {
|
|
|
|
|
"noSvgWithoutTitle": "off",
|
|
|
|
|
"useKeyWithClickEvents": "off",
|
2025-08-16 20:18:08 -06:00
|
|
|
"useAriaPropsForRole": "off",
|
|
|
|
|
"useAriaPropsSupportedByRole": "off",
|
|
|
|
|
"noStaticElementInteractions": "off"
|
2024-07-15 01:02:18 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|