From c2fa9c2d71b5d44f21233baa6fc0ad0c31a6821b Mon Sep 17 00:00:00 2001 From: Mykhailo Yatsko Date: Mon, 20 Oct 2025 17:13:00 +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 81f5fbe..aad647e 100644 --- a/package.json +++ b/package.json @@ -38,14 +38,6 @@ "type-check": "tsc --noEmit", "type-check:watch": "pnpm run type-check -- --watch" }, - "lint-staged": { - "*.{html,json,md,yml}": [ - "prettier --write" - ], - "*.{js,ts}": [ - "eslint --fix" - ] - }, "prettier": "@shelf/prettier-config", "dependencies": { "@shelf/is-audio-filepath": "3.0.1", From b5736c5feb9a550a9ec607a746d331c468d35612 Mon Sep 17 00:00:00 2001 From: Mykhailo Yatsko Date: Tue, 21 Oct 2025 11:46:30 +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 aad647e..72ca244 100644 --- a/package.json +++ b/package.json @@ -65,5 +65,13 @@ }, "publishConfig": { "access": "public" + }, + "lint-staged": { + "*.{html,json,md,yml}": [ + "prettier --write" + ], + "*.{js,ts}": [ + "eslint --fix" + ] } }