From eac3dddfc3d1ca80285e009e4518269192d1ff79 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Wed, 4 Jun 2025 21:37:44 +0700 Subject: [PATCH] test: remove `.*` files from being ignored by ESLint Signed-off-by: Alfi Maulana --- eslint.config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 99f3dcf..3ee43ed 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -5,7 +5,5 @@ export default [ eslint.configs.recommended, ...tseslint.configs.recommended, ...tseslint.configs.stylistic, - { - ignores: [".*", "dist"], - }, + { ignores: ["dist"] }, ];