codelabs-react-tanstack
Version:
A modern, production-ready boilerplate for building React applications with TypeScript, Vite, TanStack Router, TanStack Query, React Hook Form, Zod, Shadcn UI, and more.
61 lines (60 loc) • 1.22 kB
JSON
{
"$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": false,
"includes": [
"**",
"!**/node_modules",
"!**/dist",
"!**/.next",
"!**/build",
"!package-lock.json"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 100
},
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"complexity": {
"noExtraBooleanCast": "error",
"noUselessCatch": "error",
"noAdjacentSpacesInRegex": "error"
},
"correctness": {
"noUnusedVariables": "error"
},
"style": {
"noNamespace": "error",
"useAsConstAssertion": "error"
},
"suspicious": {
"noExplicitAny": "warn",
"noWith": "error"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "es5"
}
},
"css": {
"parser": {
"tailwindDirectives": true
}
}
}