Files
kvm/ui/.oxfmtrc.jsonc
Adam Shiervani 48eeb147eb chore(ui): migrate to Vite 8, oxlint, and oxfmt (#1362)
* 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.
2026-03-28 12:47:40 +01:00

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",
},
}