From 758145bf998e66560ae105e0353b8a5ede05f19f Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Fri, 11 Oct 2024 10:36:33 +0900 Subject: [PATCH] fix: update eslint ignores Add .husky directory to eslint ignores for consistency. --- eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index dde353e..37fa4d3 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -9,7 +9,7 @@ export default tsEslint.config({ "@typescript-eslint": tsEslint.plugin, "check-file": checkFile, }, - ignores: [".github/knip.ts", "**/.wrangler/**", "jest.config.ts"], + ignores: [".github/knip.ts", "**/.wrangler/**", "jest.config.ts", ".husky/**"], extends: [eslint.configs.recommended, ...tsEslint.configs.recommended, sonarjs.configs.recommended], languageOptions: { parser: tsEslint.parser,