Skip to content

Commit a9bbe67

Browse files
fix: ignore all root coverage directories in spelling (#511)
## PR Checklist - [x] Addresses an existing open issue: fixes #510 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/template-typescript-node-package/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Switches to a relative path so that it doesn't detect paths like `src/coverage` by accident, if they happen to exist.
1 parent 05bc0c2 commit a9bbe67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cspell.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"dictionaries": ["typescript"],
33
"ignorePaths": [
4+
"./coverage*",
45
".github",
56
"CHANGELOG.md",
6-
"coverage",
77
"lib",
88
"node_modules",
99
"pnpm-lock.yaml",

0 commit comments

Comments
 (0)