diff --git a/package.json b/package.json index 2a7c0f55e..22542eaa1 100644 --- a/package.json +++ b/package.json @@ -8,10 +8,10 @@ "win-dev": "cd scripts && win-dev.bat", "version:bump": "node scripts/bump-version.mjs", "prepare": "husky", - "lint:check": "cd frontend && eslint --max-warnings 0 --config .eslintrc.json .", - "lint:fix": "cd frontend && eslint --max-warnings 0 --config .eslintrc.json . --fix", - "format:fix": "cd frontend && prettier --write \"**/*.{ts,tsx,json}\"", - "format:check": "cd frontend && prettier --check \"**/*.{ts,tsx,json}\"", + "lint:check": "npm run lint:check --prefix frontend", + "lint:fix": "npm run lint:fix --prefix frontend", + "format:fix": "npm run format:fix --prefix frontend", + "format:check": "npm run format:check --prefix frontend", "cargo:check": "cd backend && cargo check", "setup": "cd scripts && node setup.js" },