fix(tooling): lint 검사를 저메모리 하이브리드로 전환

This commit is contained in:
2026-08-31 04:58:57 +00:00
parent 8d88603305
commit 99a477b47e
18 changed files with 532 additions and 32 deletions
+7 -2
View File
@@ -5,8 +5,11 @@
"version": "0.0.0",
"packageManager": "pnpm@11.21.0",
"scripts": {
"lint": "NODE_OPTIONS=--max-old-space-size=1024 turbo lint --concurrency=1",
"lint:fix": "NODE_OPTIONS=--max-old-space-size=1024 turbo lint:fix --concurrency=1",
"lint": "node tools/run-lint.mjs",
"lint:fix": "node tools/run-lint.mjs --fix",
"lint:uncached": "node tools/run-lint.mjs --no-cache",
"lint:target": "node tools/run-lint.mjs --target",
"lint:target:fix": "node tools/run-lint.mjs --fix --target",
"format": "prettier --write .",
"test": "turbo test --ui=stream --output-logs=errors-only",
"test-verbose": "SAMMO_TEST_REPORTER=verbose turbo test --ui=stream --output-logs=full",
@@ -53,6 +56,8 @@
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.10.0",
"globals": "^17.11.0",
"oxlint": "1.80.0",
"oxlint-tsgolint": "7.0.2001",
"prettier": "^3.9.6",
"tsdown": "^0.22.14",
"turbo": "^2.10.9",