-
-
Notifications
You must be signed in to change notification settings - Fork 642
/
cspell.json
79 lines (79 loc) · 1.92 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
{
"version": "0.2",
"language": "en",
"dictionaries": [
"workspace",
"workspace-bungie-names",
"workspace-usernames",
"workspace-programming"
],
"dictionaryDefinitions": [
{
"name": "workspace",
"path": "./config/cspell/dim-dict.txt",
"description": "DIM Workspace Dictionary",
"addWords": true,
"scope": "workspace"
},
{
"name": "workspace-bungie-names",
"path": "./config/cspell/bungie-dict.txt",
"description": "DIM Workspace Dictionary - Bungie",
"addWords": true,
"scope": "workspace"
},
{
"name": "workspace-usernames",
"path": "./config/cspell/dim-username-dict.txt",
"description": "DIM Workspace Dictionary - Usernames",
"addWords": true,
"scope": "workspace"
},
{
"name": "workspace-programming",
"path": "./config/cspell/programming-dict.txt",
"description": "DIM Workspace Dictionary - Programming Syntax",
"addWords": true,
"scope": "workspace"
}
],
"allowCompoundWords": true,
"flagWords": ["langauge"],
"ignorePaths": [
".vscode/extensions.json",
".github/workflows/**",
"node_modules/",
"dist/",
"icons/",
"manifest-cache/",
"destiny-icons/**",
"icons/build_icons.js",
"config/content-security-policy.js",
"src/browsercheck-utils.js",
"src/data/",
"src/images/",
"src/locale/de.json",
"src/locale/es.json",
"src/locale/esMX.json",
"src/locale/fr.json",
"src/locale/it.json",
"src/locale/ja.json",
"src/locale/ko.json",
"src/locale/pl.json",
"src/locale/ptBR.json",
"src/locale/ru.json",
"src/locale/zhCHS.json",
"src/locale/zhCHT.json",
"src/htaccess",
".eslintrc",
"babel.config.js",
"cspell.json",
"jest.config.js",
"package.json",
"tsconfig.json",
"pnpm-lock.yaml",
".gitignore",
"webpack-stats.json",
".stylelintrc"
]
}