-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathcspell-ext.json
More file actions
52 lines (52 loc) · 1.66 KB
/
cspell-ext.json
File metadata and controls
52 lines (52 loc) · 1.66 KB
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
{
"id": "cpp-dict",
"name": "C/C++",
"description": "C/C++ Keywords and common library functions.",
"readonly": true,
"dictionaryDefinitions": [
{
"name": "cpp-legacy",
"path": "./dict/cpp-legacy.txt.gz",
"description": "Legacy C/C++ Keywords and common library functions.",
"ignoreForbiddenWords": true
},
{
"name": "cpp",
"path": "./dict/cpp.txt.gz",
"description": "C/C++ Keywords and common library functions.",
"ignoreForbiddenWords": true
},
{
"name": "cpp-compound-words",
"path": "./dict/cpp-compound-words.txt.gz",
"description": "C/C++ Common word compounds.",
"ignoreForbiddenWords": true
},
{
"name": "cpp-refined",
"path": "./dict/cpp-refined.txt.gz",
"description": "Refined list of C/C++ Keywords and common library functions.",
"ignoreForbiddenWords": true
}
],
"dictionaries": [],
"languageSettings": [
{
"languageId": "c,cpp",
"locale": "*",
"ignoreRegExpList": ["includes", "hex-digits"],
"patterns": [
{
"name": "includes",
"pattern": "/#include.*/g"
},
{
"name": "hex-digits",
"pattern": "/0[xX][0-9a-fA-F](?:'?[0-9a-fA-F])*/g"
}
],
"dictionaries": ["cpp", "cpp-refined", "cpp-legacy", "cpp-compound-words"],
"dictionaryDefinitions": []
}
]
}