From 1a8a1a9574e0c651c329dd65a2352669a1578040 Mon Sep 17 00:00:00 2001 From: NFish Date: Sat, 8 Feb 2025 17:52:10 +0800 Subject: [PATCH] fix: ignore .storybook folder --- web/eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/eslint.config.mjs b/web/eslint.config.mjs index 4186fec28f..1874d200b3 100644 --- a/web/eslint.config.mjs +++ b/web/eslint.config.mjs @@ -43,7 +43,7 @@ const eslintConfig = [ }, }, { - ignores: ['node_modules/**', '.next/**', 'build/**', 'dist/**', 'out/**', 'public/**'], + ignores: ['node_modules/**', '.next/**', '.storybook/**', 'build/**', 'dist/**', 'out/**', 'public/**'], }, ]