mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 05:37:21 +00:00
162 lines
3.4 KiB
JSON
162 lines
3.4 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
|
|
"html": {
|
|
"experimentalFullSupportEnabled": false
|
|
},
|
|
"assist": {
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on",
|
|
"useSortedProperties": "on"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 120
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"semicolons": "always",
|
|
"trailingCommas": "es5",
|
|
"bracketSpacing": true,
|
|
"arrowParentheses": "always"
|
|
}
|
|
},
|
|
"json": {
|
|
"formatter": {
|
|
"indentWidth": 2
|
|
}
|
|
},
|
|
"css": {
|
|
"parser": {
|
|
"tailwindDirectives": true
|
|
}
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"style": {
|
|
"noNamespace": "off",
|
|
"noNonNullAssertion": "off"
|
|
},
|
|
"suspicious": {
|
|
"noExplicitAny": "off",
|
|
"noConfusingVoidType": "off",
|
|
"useIterableCallbackReturn": "off",
|
|
"noAssignInExpressions": "off",
|
|
"noDocumentCookie": "off",
|
|
"noThenProperty": "off"
|
|
},
|
|
"security": {
|
|
"noDangerouslySetInnerHtml": "off"
|
|
},
|
|
"complexity": {
|
|
"noUselessFragments": "warn",
|
|
"noArguments": "off"
|
|
},
|
|
"correctness": {
|
|
"noUnusedVariables": "warn",
|
|
"noUnusedImports": "warn",
|
|
"noUnusedFunctionParameters": "off",
|
|
"useExhaustiveDependencies": {
|
|
"level": "warn",
|
|
"options": {
|
|
"hooks": [
|
|
{
|
|
"name": "useForceRender",
|
|
"stableResult": true
|
|
},
|
|
{
|
|
"name": "useLatestRef",
|
|
"stableResult": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"a11y": {
|
|
"noSvgWithoutTitle": "warn"
|
|
}
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"includes": ["site/src/**", "!site/src/utils/twMerge.ts"],
|
|
"linter": {
|
|
"rules": {
|
|
"style": {
|
|
"noRestrictedImports": {
|
|
"level": "error",
|
|
"options": {
|
|
"paths": {
|
|
"tailwind-merge": "Use '@/utils/twMerge' instead — it's configured for our custom theme."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"includes": ["packages/element/**"],
|
|
"linter": {
|
|
"rules": {
|
|
"complexity": {
|
|
"noThisInStatic": "off"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"includes": ["**/*.astro"],
|
|
"linter": {
|
|
"rules": {
|
|
"correctness": {
|
|
"noUnusedVariables": "off",
|
|
"noUnusedImports": "off"
|
|
},
|
|
"style": {
|
|
"useConst": "off",
|
|
"useImportType": "off"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"includes": ["build/plugins/tests/**"],
|
|
"linter": {
|
|
"rules": {
|
|
"suspicious": {
|
|
"noTemplateCurlyInString": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"files": {
|
|
"includes": [
|
|
"**",
|
|
"!**/.astro",
|
|
"!**/.netlify",
|
|
"!**/.pnpm-store",
|
|
"!**/.vercel",
|
|
"!**/.turbo",
|
|
"!**/.next",
|
|
"!**/.opencode",
|
|
"!**/.github",
|
|
"!**/build/AGENTS.md",
|
|
"!**/build/agents",
|
|
"!**/dist",
|
|
"!**/examples",
|
|
"!**/packages/html/cdn",
|
|
"!**/styles/vjs.css",
|
|
"!**/packages/*/types"
|
|
]
|
|
}
|
|
}
|