islandflow/biome.json
dirtydishes 44431c4e66
All checks were successful
CI / Validate (push) Successful in 1m13s
expand ci quality gates
2026-05-30 02:34:28 -04:00

93 lines
2.1 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/2.4.16/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"includes": [
"*.json",
"*.ts",
".forgejo/workflows/*.yml",
"apps/**",
"deployment/docker/workspace-root/package.json",
"packages/**",
"scripts/**",
"services/**",
"!**/node_modules",
"!**/.next",
"!**/dist",
"!**/out",
"!**/coverage",
"!apps/web/tsconfig.tsbuildinfo"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"a11y": {
"useAriaPropsSupportedByRole": "off",
"useFocusableInteractive": "off",
"useSemanticElements": "off"
},
"complexity": {
"noImportantStyles": "off",
"noUselessContinue": "off",
"noUselessSwitchCase": "off",
"noUselessUndefinedInitialization": "off",
"useOptionalChain": "off"
},
"correctness": {
"useExhaustiveDependencies": "off",
"noUnusedFunctionParameters": "off",
"noUnusedImports": "off",
"noUnusedVariables": "off"
},
"suspicious": {
"noArrayIndexKey": "off",
"noControlCharactersInRegex": "off",
"noExplicitAny": "off",
"noAssignInExpressions": "off",
"noShorthandPropertyOverrides": "off"
},
"security": {
"noDangerouslySetInnerHtml": "off"
},
"style": {
"noDescendingSpecificity": "off",
"noNonNullAssertion": "off",
"useExponentiationOperator": "off",
"useImportType": "off",
"useTemplate": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"semicolons": "always",
"trailingCommas": "none"
}
},
"json": {
"parser": {
"allowComments": true,
"allowTrailingCommas": true
}
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}