From 43440af6a96c312ead3f3388143f5940dc5ad649 Mon Sep 17 00:00:00 2001 From: Jens Simon Date: Tue, 21 Jan 2025 12:53:17 +0100 Subject: [PATCH] chore: move lint-staged config out of package.json --- lint-staged.config.mjs | 3 +++ package.json | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 lint-staged.config.mjs diff --git a/lint-staged.config.mjs b/lint-staged.config.mjs new file mode 100644 index 0000000..a8b4d7b --- /dev/null +++ b/lint-staged.config.mjs @@ -0,0 +1,3 @@ +export default { + '**/*.{js,mjs}': 'eslint', +} diff --git a/package.json b/package.json index b39915e..15c0632 100644 --- a/package.json +++ b/package.json @@ -64,9 +64,6 @@ "path": "./node_modules/cz-conventional-changelog" } }, - "lint-staged": { - "**/*.{js,mjs}": "eslint" - }, "release": { "branches": [ "main"