From c9f67ccaf2d0f440fe1c26d6024e46a3ce64a70a Mon Sep 17 00:00:00 2001 From: Mykhailo Yatsko Date: Mon, 20 Oct 2025 17:13:11 +0200 Subject: [PATCH 1/2] Remove lint-staged section from package.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- package.json | 8 -------- 1 file changed, 8 deletions(-) diff --git a/package.json b/package.json index b9fb659..f70600f 100644 --- a/package.json +++ b/package.json @@ -36,14 +36,6 @@ "type-check": "tsc --noEmit", "type-check:watch": "npm run type-check -- --watch" }, - "lint-staged": { - "*.{html,json,md,yml}": [ - "prettier --write --ignore-path=./.eslintignore" - ], - "*.{ts,js}": [ - "eslint --fix" - ] - }, "resolutions": { "strip-ansi": "6.0.1", "wrap-ansi": "7.0.0", From 57e1ee76d3d4bb2890c2e0d82e55ff5607086ad2 Mon Sep 17 00:00:00 2001 From: Mykhailo Yatsko Date: Tue, 21 Oct 2025 11:46:37 +0200 Subject: [PATCH 2/2] Fix lint-staged: restore entire section (no CircleCI entry found) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- package.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/package.json b/package.json index f70600f..5e8f78a 100644 --- a/package.json +++ b/package.json @@ -69,5 +69,13 @@ }, "publishConfig": { "access": "public" + }, + "lint-staged": { + "*.{html,json,md,yml}": [ + "prettier --write --ignore-path=./.eslintignore" + ], + "*.{ts,js}": [ + "eslint --fix" + ] } }