Explorar el Código

chore: raise lint heap limit

imccyu hace 1 mes
padre
commit
e5218217c3
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      package.json

+ 2 - 2
package.json

@@ -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",