chore: replace eslint and prettier with oxlint and oxfmt

Migrate from ESLint/Prettier to oxlint/oxfmt for 50-100x faster linting and 35x faster formatting.
This commit is contained in:
plebeius
2025-12-26 16:41:03 +01:00
parent a57cc1e4e7
commit 4dd81edd3f
7 changed files with 188 additions and 1365 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"semi": true,
"singleQuote": true,
"printWidth": 170,
"bracketSpacing": true,
"tabWidth": 2,
"trailingComma": "all",
"jsxSingleQuote": true,
"arrowParens": "always",
"useTabs": false,
"ignorePatterns": []
}