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
+2 -2
View File
@@ -62,8 +62,8 @@
"scripts": {
"build": "tsdown -c ./tsdown.config.ts",
"dev": "tsdown -c ./tsdown.config.ts --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm -w lint:target packages/common",
"lint:fix": "pnpm -w lint:target:fix packages/common",
"test": "vitest run --config vitest.config.ts",
"typecheck": "pnpm -w tsc7 -b packages/common/tsconfig.json"
},
+2 -2
View File
@@ -8,8 +8,8 @@
"scripts": {
"build": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/infra",
"dev": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/infra --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm -w lint:target packages/infra",
"lint:fix": "pnpm -w lint:target:fix packages/infra",
"test": "vitest run --config vitest.config.ts",
"prisma:generate": "pnpm prisma:generate:game && pnpm prisma:generate:gateway",
"typecheck": "pnpm -w tsc7 -b packages/infra/tsconfig.json",
+2 -2
View File
@@ -15,8 +15,8 @@
"scripts": {
"build": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/logic",
"dev": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/logic --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm -w lint:target packages/logic",
"lint:fix": "pnpm -w lint:target:fix packages/logic",
"test": "vitest run --config vitest.config.ts",
"typecheck": "pnpm -w tsc7 -b packages/logic/tsconfig.json"
},