-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcspell.json
More file actions
69 lines (69 loc) · 1.58 KB
/
cspell.json
File metadata and controls
69 lines (69 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"version": "0.2",
// Specify paths/files to ignore.
"ignorePaths": [
"node_modules", // this will ignore anything the node_modules directory
"**/node_modules", // the same for this one
"**/node_modules/**", // the same for this one
"node_modules/**", // Doesn't currently work due to how the current working directory is determined.
"vscode-extension", //
".git", // Ignore the .git directory
"**/.git", // Ignore the .git directory
".git/**", // Ignore all files in the .git directory
"**/.git/**" // Ignore all files in the .git directory
],
"dictionaryDefinitions": [],
"dictionaries": [],
"words": [
"aiscript",
"aiscripts",
"alertlevel",
"alertlevellookup",
"buildmethodlookup",
"Cgetty",
"Charkey",
"chemodun",
"classlookup",
"codecomplete",
"commonactions",
"componentstate",
"componentstatelookup",
"cuename",
"dbdata",
"debugfilter",
"defensiblealertlevel",
"egosoft",
"ignoreprefix",
"infolibrarytype",
"infolibrarytypelookup",
"inputfunction",
"inputmap",
"isalertlevel",
"isclass",
"ledhead",
"licencelookup",
"licencetype",
"lvalue",
"lvalueexpression",
"lvaluename",
"mdscript",
"mdscriptname",
"moodtype",
"moodtypelookup",
"onattribute",
"onclosetag",
"onopentag",
"ontext",
"opentag",
"productionmethod",
"readtext",
"relationrange",
"relationrangelookup",
"savegame",
"scriptproperties",
"subfolders",
"trafficlevel"
],
"ignoreWords": [],
"import": []
}