chore: raise lint heap limit

This commit is contained in:
imccyu
2026-07-28 23:20:18 +08:00
parent c804dfde3e
commit e5218217c3
+2 -2
View File
@@ -19,8 +19,8 @@
"clean": "tsx scripts/clean.ts",
"change-scope": "tsx scripts/change-scope.ts",
"typecheck": "tsc -b",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "node --max-old-space-size=8192 node_modules/eslint/bin/eslint.js .",
"lint:fix": "node --max-old-space-size=8192 node_modules/eslint/bin/eslint.js . --fix",
"duplication": "jscpd --config .jscpd.json packages scripts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",