2025-10-23 12:07:52 +03:00
|
|
|
{
|
2026-07-30 15:32:12 -07:00
|
|
|
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
|
|
|
|
|
"vcs": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"clientKind": "git",
|
|
|
|
|
"useIgnoreFile": true
|
|
|
|
|
},
|
2025-10-23 12:07:52 +03:00
|
|
|
"files": {
|
|
|
|
|
"includes": [
|
|
|
|
|
"**/*.js",
|
|
|
|
|
"**/*.jsx",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
"**/*.mts",
|
|
|
|
|
"**/*.mjs",
|
|
|
|
|
"**/*.json",
|
|
|
|
|
"!**/node_modules",
|
|
|
|
|
"!**/dist",
|
|
|
|
|
"!**/.vercel",
|
|
|
|
|
"!**/.changeset",
|
|
|
|
|
"!**/.cursor",
|
|
|
|
|
"!**/.well-known/workflow",
|
|
|
|
|
"!**/.prebuilt",
|
|
|
|
|
"!**/.turbo",
|
|
|
|
|
"!**/.next",
|
|
|
|
|
"!**/.env",
|
|
|
|
|
"!target",
|
|
|
|
|
"!**/tests/fixture",
|
2026-01-07 12:52:52 -08:00
|
|
|
"!**/tests/errors",
|
|
|
|
|
"!**/.workflow-data",
|
|
|
|
|
"!**/.nuxt",
|
|
|
|
|
"!**/.nitro",
|
2026-05-04 09:42:44 +09:00
|
|
|
"!**/.output",
|
|
|
|
|
"!**/.tanstack",
|
|
|
|
|
"!**/routeTree.gen.ts"
|
2025-10-23 12:07:52 +03:00
|
|
|
],
|
|
|
|
|
"ignoreUnknown": true
|
|
|
|
|
},
|
|
|
|
|
"formatter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"formatWithErrors": false,
|
|
|
|
|
"lineWidth": 80,
|
2026-01-07 12:52:52 -08:00
|
|
|
"attributePosition": "auto",
|
|
|
|
|
"useEditorconfig": true
|
2025-10-23 12:07:52 +03:00
|
|
|
},
|
|
|
|
|
"linter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"rules": {
|
|
|
|
|
"recommended": true,
|
2026-07-30 15:32:12 -07:00
|
|
|
"a11y": {
|
|
|
|
|
"noNoninteractiveElementToInteractiveRole": "warn",
|
|
|
|
|
"noStaticElementInteractions": "warn",
|
|
|
|
|
"noSvgWithoutTitle": "warn",
|
|
|
|
|
"useFocusableInteractive": "warn",
|
|
|
|
|
"useKeyWithClickEvents": "warn",
|
|
|
|
|
"useSemanticElements": "warn"
|
|
|
|
|
},
|
|
|
|
|
"security": {
|
|
|
|
|
"noDangerouslySetInnerHtml": "warn"
|
|
|
|
|
},
|
2025-10-23 12:07:52 +03:00
|
|
|
"complexity": {
|
|
|
|
|
"noExcessiveCognitiveComplexity": "warn",
|
|
|
|
|
"noVoid": "off"
|
|
|
|
|
},
|
|
|
|
|
"correctness": {
|
|
|
|
|
"noUnusedVariables": "error",
|
|
|
|
|
"useExhaustiveDependencies": "warn"
|
|
|
|
|
},
|
|
|
|
|
"style": {
|
|
|
|
|
"noNonNullAssertion": "warn",
|
|
|
|
|
"useConst": "error",
|
|
|
|
|
"useImportType": "error"
|
|
|
|
|
},
|
|
|
|
|
"suspicious": {
|
|
|
|
|
"noExplicitAny": "off",
|
|
|
|
|
"noArrayIndexKey": "warn"
|
|
|
|
|
},
|
|
|
|
|
"performance": {
|
|
|
|
|
"noAccumulatingSpread": "warn"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"javascript": {
|
|
|
|
|
"formatter": {
|
|
|
|
|
"jsxQuoteStyle": "double",
|
|
|
|
|
"quoteProperties": "asNeeded",
|
|
|
|
|
"trailingCommas": "es5",
|
|
|
|
|
"semicolons": "always",
|
|
|
|
|
"arrowParentheses": "always",
|
|
|
|
|
"bracketSpacing": true,
|
|
|
|
|
"bracketSameLine": false,
|
|
|
|
|
"quoteStyle": "single",
|
|
|
|
|
"attributePosition": "auto"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"assist": {
|
2026-01-07 12:52:52 -08:00
|
|
|
"enabled": true,
|
2025-10-23 12:07:52 +03:00
|
|
|
"actions": {
|
|
|
|
|
"source": {
|
|
|
|
|
"organizeImports": "on"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|