From 13d648cf7b3c1537e38e45ca47a8a4164a0f48f6 Mon Sep 17 00:00:00 2001 From: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Date: Mon, 19 Jan 2026 10:37:49 +0800 Subject: [PATCH] chore: no custom lint cache location (#31195) --- web/.gitignore | 2 ++ web/package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/web/.gitignore b/web/.gitignore index 9de3dc83f9..a4ae324795 100644 --- a/web/.gitignore +++ b/web/.gitignore @@ -64,3 +64,5 @@ public/fallback-*.js .vscode/settings.json .vscode/mcp.json + +.eslintcache diff --git a/web/package.json b/web/package.json index 8a3cf243d9..5dfacece73 100644 --- a/web/package.json +++ b/web/package.json @@ -27,7 +27,7 @@ "build": "next build", "build:docker": "next build && node scripts/optimize-standalone.js", "start": "node ./scripts/copy-and-start.mjs", - "lint": "eslint --cache --cache-location node_modules/.cache/eslint/.eslint-cache", + "lint": "eslint --cache", "lint:ci": "pnpm lint --concurrency 3", "lint:fix": "pnpm lint --fix", "lint:quiet": "pnpm lint --quiet",