-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathcspell.json
93 lines (93 loc) · 2.63 KB
/
cspell.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"$schema": "./cspell.schema.json",
"version": "0.2",
"cache": {
"useCache": true,
"cacheLocation": "./.cspell/.cspellcache",
"cacheStrategy": "content"
},
"dictionaryDefinitions": [
{
"name": "workspace",
"path": "./cspell-dict.txt",
"description": "Custom Workspace Dictionary",
"addWords": true
},
{
"name": "ignore words",
"path": "./cspell-ignore-words.txt",
"description": "Words to be Ignored",
"addWords": true,
"noSuggest": true
}
],
"dictionaries": ["workspace", "ignore words"],
"ignorePaths": [
".eslintignore",
".git",
".gitattributes",
".gitignore",
".github/integrations.json",
".pnp.{js,cjs}",
".prettierignore",
".yarn",
"__snapshots__",
"*.{png,jpg,pdf,svg}",
"*.cpuprofile",
"*.heapprofile",
"emoji*.txt",
"**/.docusaurus/**",
"**/.gitignore",
"**/.vscode/**",
"**/{cspell.*,cSpell.*,.cspell.*,cspell.config.*}",
"**/*.schema.json",
"**/*.snap",
"**/*.trie",
"**/coverage/**",
"**/dist/**",
"**/src/generated/**",
"**/jest.config.js",
"**/node_modules/**",
"**/tsconfig.json",
"/tools/*/lib/**",
"/cspell-dict.txt",
"/cspell-ignore-words.txt",
"/docs/docsV2/**",
"/docs/types/cspell-types",
"examples/yarn/**",
"/.cspell",
"cspell*.{json,yaml}",
"integration-tests/config/config.json",
"integration-tests/config/repositories/**",
"integration-tests/perf/**",
"integration-tests/repositories/**",
"integration-tests/snapshots/**",
"lcov.info",
"lib-bundled",
"package.json",
"*-lock.{json,yaml}",
"packages/*/fixtures/**",
"packages/*/Samples/**",
"packages/*/samples/**",
"packages/Samples/**",
"packages/cspell-lib/fixtures/**",
"temp",
"test-fixtures/**",
"test-packages/*/test-cspell-eslint-plugin*/**",
"test-packages/examples/example-cspell-lib-single-doc/samples/**",
"test-packages/*/test-cspell-tools/src/*.txt",
"test-packages/yarn/yarn2/test-eslint-plugin/**"
],
"useGitignore": true,
"flagWords": [],
"ignoreWords": ["commitcomment"],
"features": {
"weighted-suggestions": true
},
"overrides": [
{
"filename": "**/CHANGELOG.md",
"words": ["webm"]
}
]
}