Skip to content

Commit f5fcdb8

Browse files
committed
Finished e2e test
1 parent e8cc52d commit f5fcdb8

File tree

14 files changed

+492
-1334
lines changed

14 files changed

+492
-1334
lines changed

.cspell.json

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,29 @@
33
"language": "en",
44
"useGitignore": true,
55
"ignorePaths": ["node_modules", "dist", "coverage"],
6-
"dictionaries": ["typescript", "node", "npm", "custom-words"],
6+
"dictionaries": [
7+
"typescript",
8+
"node",
9+
"npm",
10+
"project-words",
11+
"test-words",
12+
"lockfile-words"
13+
],
714
"dictionaryDefinitions": [
815
{
9-
"name": "custom-words",
10-
"path": "./.cspell/custom-words.txt",
16+
"name": "project-words",
17+
"path": "./.cspell/project-words.txt",
18+
"addWords": true
19+
},
20+
{
21+
"name": "test-words",
22+
"path": "./.cspell/test-words.txt",
1123
"addWords": true
24+
},
25+
{
26+
"name": "lockfile-words",
27+
"path": "./.cspell/lockfile-words.txt",
28+
"description": "Dictionary of words extracted from lockfiles"
1229
}
13-
],
14-
"import": ["./cspell-ext.json"]
30+
]
1531
}

0 commit comments

Comments
 (0)