forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcspell-ext.json
48 lines (48 loc) · 1.72 KB
/
cspell-ext.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
{
"id": "software-terms",
"name": "Software Terms",
"readonly": true,
"description": "Software terms dictionary.",
"import": ["./cspell-corrections.yaml"],
"dictionaryDefinitions": [
{
// changing the name is a breaking change.
"name": "softwareTerms",
"path": "./dict/softwareTerms.txt",
"description": "Software terms dictionary."
},
{
// Note this dictionary name is not consistent with `softwareTerms` but it is
// consistent with other dictionaries.
"name": "networking-terms",
"path": "./dict/networkingTerms.txt",
"description": "Software networking terms dictionary."
},
{
// Note this dictionary name is not consistent with `softwareTerms` but it is
// consistent with other dictionaries.
"name": "web-services",
"path": "./dict/webServices.txt",
"description": "Web Services and APIs dictionary."
},
{
"name": "computing-acronyms",
"path": "./dict/computing-acronyms.txt",
"description": "Common acronyms related to computing."
},
{
"name": "coding-compound-terms",
"path": "./dict/coding-compound-terms.txt",
"description": "Common codding compound terms."
}
],
// Enable `softwareTerms` by default if this extension is imported.
"dictionaries": [
"softwareTerms",
"coding-compound-terms",
"computing-acronyms",
"software-term-suggestions",
// "networking-terms" - is not included by default because it is very specific.
"web-services"
]
}