fix(gitignore): anchor "coverage/" rule to repo root (#127)

The unanchored "coverage/" rule (intended to ignore the test-output
directory at repo root) silently matches any "coverage/" directory in
the tree. This bit a real PR: src/coverage/ was added but never made
it into the commit because git add silently dropped the files. The
PR shipped with the test importing a module that didn't exist.

Anchor the rule to "/coverage/" so it only ignores root-level test
output, allowing src/coverage/, packages/*/coverage/, etc. to be
committed normally.
This commit is contained in:
andreinknv
2026-05-07 21:03:44 -05:00
committed by GitHub
parent 5e5d8d9447
commit 153fd1e974
+1 -1
View File
@@ -18,7 +18,7 @@ dist/
Thumbs.db Thumbs.db
# Test coverage # Test coverage
coverage/ /coverage/
.nyc_output/ .nyc_output/
# Environment # Environment