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.
This commit is contained in:
Daniel Luiz Alves
2025-07-08 09:26:42 -03:00
parent 1134beb6a6
commit 233ea0da41

View File

@@ -65,6 +65,6 @@ export default [
},
},
{
ignores: ["src/components/ui/**/*"],
ignores: ["src/components/ui/**/*", ".next/**/*"],
},
];