[core] Use shared Oxc config

This commit is contained in:
Vitaly Rtishchev
2026-06-26 18:05:14 +03:00
parent 1095dd9802
commit 4e16f1e5f6
6 changed files with 108 additions and 218 deletions
+5 -4
View File
@@ -9,12 +9,12 @@
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "npm run oxlint && npm run stylelint",
"oxlint": "oxlint .",
"oxlint": "oxlint -c oxlint.config.mjs .",
"stylelint": "stylelint '**/*.css' --cache",
"jest": "jest",
"jest:watch": "jest --watch",
"format:test": "oxfmt --check \"**/*.{ts,tsx,css}\"",
"format:write": "oxfmt --write \"**/*.{ts,tsx,css}\"",
"format:test": "oxfmt -c oxfmt.config.mjs --check \"**/*.{ts,tsx,css}\"",
"format:write": "oxfmt -c oxfmt.config.mjs --write \"**/*.{ts,tsx,css}\"",
"test": "npx next typegen && npm run format:test && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
@@ -43,8 +43,9 @@
"babel-loader": "^10.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"oxc-config-mantine": "^1.0.0",
"oxfmt": "^0.55.0",
"oxlint": "^1.58.0",
"oxlint": "^1.70.0",
"postcss": "^8.5.6",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",