- Move Vite, Vitest, Oxfmt, and Oxlint into standalone config files - Replace vite-plus scripts and test imports with direct tools - Keep the generated route tree out of formatter and linter checks
18 lines
470 B
JSON
18 lines
470 B
JSON
{
|
|
"$schema": "./node_modules/oxfmt/configuration_schema.json",
|
|
"ignorePatterns": ["src/routeTree.gen.ts"],
|
|
"singleQuote": true,
|
|
"sortImports": {
|
|
"groups": [
|
|
"type-import",
|
|
["value-builtin", "value-external"],
|
|
"type-internal",
|
|
"value-internal",
|
|
["type-parent", "type-sibling", "type-index"],
|
|
["value-parent", "value-sibling", "value-index"],
|
|
"unknown"
|
|
]
|
|
},
|
|
"sortPackageJson": true,
|
|
"trailingComma": "all"
|
|
}
|