mirror of
https://github.com/LukeHagar/dokploy.git
synced 2025-12-06 04:19:37 +00:00
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
"files": {
|
|
"includes": [
|
|
"**",
|
|
"!**/.docker",
|
|
"!**/.next/**",
|
|
"!**/dist",
|
|
"!**/drizzle/**",
|
|
"!node_modules/**",
|
|
"!packages/server/package.json"
|
|
]
|
|
},
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"linter": {
|
|
"rules": {
|
|
"security": {
|
|
"noDangerouslySetInnerHtml": "off"
|
|
},
|
|
"complexity": {
|
|
"noUselessCatch": "off",
|
|
"noBannedTypes": "off"
|
|
},
|
|
"correctness": {
|
|
"useExhaustiveDependencies": "off",
|
|
"noUnsafeOptionalChaining": "off",
|
|
"noUnusedImports": "error",
|
|
"noUnusedFunctionParameters": "error",
|
|
"noUnusedVariables": "error"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "off",
|
|
"noParameterAssign": "error",
|
|
"useAsConstAssertion": "error",
|
|
"useDefaultParameterLast": "error",
|
|
"useEnumInitializers": "error",
|
|
"useSelfClosingElements": "error",
|
|
"useSingleVarDeclarator": "error",
|
|
"noUnusedTemplateLiteral": "error",
|
|
"useNumberNamespace": "error",
|
|
"noInferrableTypes": "error",
|
|
"noUselessElse": "error"
|
|
},
|
|
"suspicious": {
|
|
"noArrayIndexKey": "off",
|
|
"noExplicitAny": "off",
|
|
"noRedeclare": "off"
|
|
},
|
|
"a11y": {
|
|
"noSvgWithoutTitle": "off",
|
|
"useKeyWithClickEvents": "off",
|
|
"useAriaPropsForRole": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|