summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-05-27 01:40:53 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-06-09 18:50:12 -0400
commitc0f3495ea54d12b2bad9b937ea9334594d0aa248 (patch)
treeb183dc5557b9e6c6d46385581f74d30001d06065
parent12434d455067fe2c24d6073113f2c34f46f1a0c7 (diff)
Don't lint the coverage output.
This is entirely mechanical; we don't consider coverage reports to be "part of the project," and there's no point in wasting `eslint`'s time (or ours) in reviewing lints there.
-rw-r--r--eslint.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/eslint.config.js b/eslint.config.js
index 29451a9..57b0875 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -5,6 +5,6 @@ export default [
prettier,
...svelte.configs['flat/prettier'],
{
- ignores: ['target/'],
+ ignores: ['target/', 'coverage/'],
},
];