mirror of
https://github.com/jetkvm/kvm.git
synced 2026-05-21 05:20:35 +00:00
48eeb147eb
* chore(ui): migrate to Vite 8, oxlint, and oxfmt Replace esbuild+Rollup with Oxc+Rolldown (Vite 8), ESLint with oxlint (with type-aware linting), and Prettier with oxfmt. No source code changes — formatting and lint fixes will roll out incrementally via lint-staged as files are touched. * fix(ui): resolve oxlint errors in existing code Fix errors caught by oxlint: useless rename, redundant undefined on optional params, duplicate union type constituent, and unsafe toString on union type.
14 lines
252 B
JSON
14 lines
252 B
JSON
{
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"semi": true,
|
|
"useTabs": false,
|
|
"arrowParens": "avoid",
|
|
"singleQuote": false,
|
|
"printWidth": 100,
|
|
"sortTailwindcss": {
|
|
"functions": ["clsx", "cx"],
|
|
"stylesheet": "./src/index.css",
|
|
},
|
|
}
|