From 233ea0da41012b35f2ef35c8fd895eec70004c9b Mon Sep 17 00:00:00 2001 From: Daniel Luiz Alves Date: Tue, 8 Jul 2025 09:26:42 -0300 Subject: [PATCH] fix: update ESLint configuration to include .next directory in ignores - Added ".next/**/*" to the ignores array in the ESLint configuration to prevent linting of build artifacts, improving the linting process. --- apps/web/eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/eslint.config.mjs b/apps/web/eslint.config.mjs index 9f3233b..bd18424 100644 --- a/apps/web/eslint.config.mjs +++ b/apps/web/eslint.config.mjs @@ -65,6 +65,6 @@ export default [ }, }, { - ignores: ["src/components/ui/**/*"], + ignores: ["src/components/ui/**/*", ".next/**/*"], }, ];