Migrate eslint to oxlint (#72)

This commit is contained in:
Vitaly Rtishchev
2026-04-01 22:01:53 +03:00
committed by GitHub
parent e70facef08
commit 168462c766
5 changed files with 340 additions and 3623 deletions
+4 -12
View File
@@ -8,8 +8,8 @@
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint .",
"lint": "npm run oxlint && npm run stylelint",
"oxlint": "oxlint .",
"stylelint": "stylelint '**/*.css' --cache",
"jest": "jest",
"jest:watch": "jest --watch",
@@ -30,8 +30,6 @@
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@eslint/eslintrc": "^3",
"@eslint/js": "^9.37.0",
"@storybook/addon-themes": "^10.0.0",
"@storybook/nextjs": "^10.0.0",
"@storybook/react": "^10.0.0",
@@ -39,19 +37,14 @@
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.0",
"@types/react": "19.2.14",
"babel-loader": "^10.0.0",
"eslint": "^9.37.0",
"eslint-config-mantine": "^4.0.3",
"eslint-config-next": "16.2.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.58.0",
"postcss": "^8.5.6",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",
@@ -59,8 +52,7 @@
"stylelint": "^17.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"ts-jest": "^29.4.4",
"typescript": "6.0.2",
"typescript-eslint": "^8.46.0"
"typescript": "6.0.2"
},
"packageManager": "yarn@4.13.0"
}