forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cSpell.json
56 lines (56 loc) · 1.32 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
// cSpell Settings
{
// Version of the setting file. Always 0.1
"version": "0.1",
// language - current active spelling language
"language": "en",
// words - list of words to be always considered correct
"words": [
"Mutex",
"addrtype",
"appname",
"configstore",
"django",
"django's"
],
// flagWords - list of words to be always considered incorrect
"flagWords": [],
"maxNumberOfProblems": 1000,
"ignorePaths": [
"**/node_modules/**",
"**/vscode-extension/**",
"**/.git/**",
".vscode"
],
"import": [
"./packages/es_ES/cspell-ext.json",
"./packages/fr_FR/cspell-ext.json",
"./packages/da_DK/cspell-ext.json"
],
"overrides": [
{
"filename": "**/nl_NL/**",
"language": "en,nl"
},
{
"filename": "**/fr_FR/**/*.txt",
"language": "en,fr"
},
{
"filename": "**/da_DK/**",
"language": "en,da"
},
{
"filename": "**/de_DE/**",
"language": "en,de"
},
{
"filename": "**/en_GB/**",
"language": "en_GB"
},
{
"filename": "**/sv/**",
"language": "en,sv"
}
]
}