forked from streetsidesoftware/cspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.json
55 lines (55 loc) · 1.45 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
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"dictionaryDefinitions": [
{
"name": "workspace",
"path": "./cspell-dict.txt",
"description": "Custom Workspace Dictionary",
"addWords": true,
"scope": "workspace"
}
],
"dictionaries": [
"workspace"
],
"ignorePaths": [
".eslintignore",
".gitattributes",
".gitignore",
".pnp.{js,cjs}",
".prettierignore",
".yarn",
"*.{png,jpg,pdf}",
"**/.gitignore",
"**/.vscode/**",
"**/{cspell.*,cSpell.*,.cspell.*,cspell.config.*}",
"**/*.snap",
"**/*.trie",
"**/coverage/**",
"**/dist/**",
"**/jest.config.js",
"**/node_modules/**",
"**/tsconfig.json",
"cspell.json",
"integration-tests/config/config.json",
"integration-tests/config/repositories/**",
"integration-tests/repositories/**",
"integration-tests/snapshots/**",
"lcov.info",
"package.json",
"package-lock.json",
"packages/*/samples/**",
"packages/Samples/**",
"temp",
"test-fixtures/**",
"test-packages/test-cspell-tools/src/*.txt"
],
"useGitignore": true,
"ignoreWords": [
"commitcomment"
],
"words": [
"medicalterms"
]
}