mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
bb910f2571
* [workbench] Add TanStack Start workbench and tests (#1875) (cherry picked from commit8202663857) * Fix pnpm type issue after tanstack PR (#1907) (cherry picked from commita7071bf3d4)
89 lines
1.9 KiB
JSON
89 lines
1.9 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.3.3/schema.json",
|
|
"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",
|
|
"!**/tests/errors",
|
|
"!**/.workflow-data",
|
|
"!**/.nuxt",
|
|
"!**/.nitro",
|
|
"!**/.output",
|
|
"!**/.tanstack",
|
|
"!**/routeTree.gen.ts"
|
|
],
|
|
"ignoreUnknown": true
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"formatWithErrors": false,
|
|
"lineWidth": 80,
|
|
"attributePosition": "auto",
|
|
"useEditorconfig": true
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"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": {
|
|
"enabled": true,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on"
|
|
}
|
|
}
|
|
}
|
|
}
|