{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"files": {
"ignoreUnknown": false,
"includes": [
"**",
"!**/.next",
"!**/dist",
"!**/.turbo",
"!**/dev-dist",
"!**/.zed",
"!**/.vscode",
"!**/routeTree.gen.ts",
"!**/src-tauri",
"!**/.nuxt",
"!bts.jsonc",
"!**/.expo",
"!**/.wrangler",
"!**/.alchemy",
"!**/.svelte-kit",
"!**/.source",
"!**/convex/**/_generated",
"!**/.context",
"!**/worker-configuration.d.ts"
]
},
"extends": ["ultracite/core", "ultracite/react"],
"json": {
"parser": {
"allowComments": true,
"allowTrailingCommas": true
},
"formatter": {
"trailingCommas": "none"
}
},
"linter": {
"domains": {
"react": "recommended"
},
"rules": {
"suspicious": {
"noConsole": "off",
"noUnknownAtRules": "off",
"noEmptyBlock": "off",
"noEmptyBlockStatements": "off",
"useAwait": "off"
},
"performance": {
"noNamespaceImport": "off",
"useTopLevelRegex": "off"
},
"style": {
"noMagicNumbers": "off",
"useConsistentMemberAccessibility": "off",
"useBlockStatements": "off"
},
"nursery": {
"noShadow": "off",
"noUselessUndefined": "off"
},
"complexity": {
"useSimplifiedLogicExpression": "off",
"noExcessiveCognitiveComplexity": "off",
"noStaticOnlyClass": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"overrides": [
{
"includes": ["**/convex/*.ts"],
"linter": {
"rules": {
"style": {
"useFilenamingConvention": "off"
}
}
}
},
{
"includes": ["**/$.ts", "$.tsx", "**/$*.tsx", "**/*_.$*.tsx"],
"linter": {
"rules": {
"style": {
"useFilenamingConvention": "off"
}
}
}
}
]
}