-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcspell.json
More file actions
37 lines (37 loc) · 1.14 KB
/
cspell.json
File metadata and controls
37 lines (37 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"version": "0.2",
"language": "en",
"dictionaries": ["promptbook-words", "misc-words", "czech-words"],
"dictionaryDefinitions": [
{
"name": "czech-words",
"path": "./other/cspell-dictionaries/czech-words.txt",
"caseSensitive": false
},
{
"name": "promptbook-words",
"path": "./other/cspell-dictionaries/promptbook-words.txt",
"caseSensitive": false
},
{
"name": "misc-words",
"path": "./other/cspell-dictionaries/misc-words.txt",
"caseSensitive": false
}
],
"ignorePaths": [
"node_modules",
".next",
"coverage",
"dist",
".git",
"src/scrapers/website/examples",
"src/scrapers/markdown/examples",
"src/other/templates/getTemplatesPipelineCollection.ts",
"**/tmp/**",
"src/utils/random/data/czech-first-male-names.json",
"src/utils/random/data/czech-first-female-names.json",
"src/utils/random/data/czech-last-male-names.json",
"src/utils/random/data/czech-last-female-names.json"
]
}