From 8a2b6a183b133a1ac8619c0ff4b705101264ce3f Mon Sep 17 00:00:00 2001 From: beatz174-bit Date: Tue, 2 Dec 2025 18:45:56 +1000 Subject: [PATCH] Ignore coverage reports in eslint --- eslint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 83df941..2d92e45 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -6,7 +6,7 @@ import tseslint from 'typescript-eslint'; export default tseslint.config( { - ignores: ['node_modules', 'build', 'dist', 'public'], + ignores: ['node_modules', 'build', 'dist', 'public', 'coverage', 'coverage-reports'], }, js.configs.recommended, ...tseslint.configs.recommended,