-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcspell.json
More file actions
23 lines (23 loc) · 578 Bytes
/
cspell.json
File metadata and controls
23 lines (23 loc) · 578 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/master/cspell.schema.json",
"version": "0.2",
"language": "en",
"files": [ "**/*" ],
"dictionaryDefinitions": [
{
"name": "project-words",
"path": "./.cspell/project-words.txt",
"addWords": true
}
],
"dictionaries": [ "project-words" ],
"ignorePaths": [
"./.cspell",
"./.git",
"./lib",
"./node_modules",
"./package-lock.json",
"./src/test/data",
"sandbox"
]
}