-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathcspell.config.json
More file actions
159 lines (159 loc) · 4.79 KB
/
cspell.config.json
File metadata and controls
159 lines (159 loc) · 4.79 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"version": "0.2",
"language": "en",
"words": [
"Corelight",
"cvecount",
"Nmap",
"SCCM",
"Tanium",
"Unquarantine",
"Unscored",
"Unsuppported",
"azuredeploy.json",
"Unsuppported",
"Unquarantine",
"Unscored",
"ods.opinsights.azure.com",
"MEMCM",
"retryable",
"Entra"
],
"dictionaries": [],
"ignorePaths": [
"./Solutions/*/Package/**",
"./Solutions/*/ci/cspell-results.json",
"cspell.config.json",
"cspell-dictionaries"
],
"overrides": [
{
"filename": "Solutions/Tanium/SolutionMetadata.json",
"dictionaries": [
"publisher-ids",
]
},
{
"filename": "Solutions/Tanium/Analytic Rules/*.yaml",
"dictionaries": [
"analytics-rules-words",
"kql-functions",
]
},
{
"filename": "Solutions/Tanium/Workbooks/*.json",
"dictionaries": [
"azure-workbook-words",
"kql-functions",
"azure-arm-template-words",
]
},
{
"filename": "Solutions/Tanium/Playbooks/**/*.json",
"dictionaries": [
"azure-arm-template-words",
"html-words",
]
},
{
"filename": "Solutions/Tanium/Data Connectors/DataConnector.json",
"dictionaries": [
"dataconnector-words",
]
},
{
"filename": "Solutions/Tanium/Data Connectors/ConnectorDefinition.json",
"dictionaries": [
"kql-functions",
]
},
{
"filename": "Solutions/Tanium/Data Connectors/DCR.json",
"dictionaries": [
"azure-arm-template-words",
"kql-functions",
"variable-names"
]
},
{
"filename": "Solutions/Tanium/Data Connectors/Table_*.json",
"dictionaries": [
"variable-names"
]
},
{
"filename": "Solutions/Tanium/ci/*.sh",
"dictionaries": [
"bash-words",
]
},
{
"filename": "Solutions/Tanium/ci/*.ps1",
"dictionaries": [
"powershell-words",
]
},
],
"dictionaryDefinitions": [
{
"name": "analytics-rules-words",
"path": "./cspell-dictionaries/analytics-rules-words.txt",
"description": "Analytics Rules ARM Template words that should be ignored.",
"addWords": true
},
{
"name": "azure-arm-template-words",
"path": "./cspell-dictionaries/azure-arm-template-words.txt",
"description": "ARM Template words that should be ignored.",
"addWords": true
},
{
"name": "azure-workbook-words",
"path": "./cspell-dictionaries/azure-workbook-words.txt",
"description": "Words used Azure workbook gallery templates.",
"addWords": true
},
{
"name": "bash-words",
"path": "./cspell-dictionaries/bash-dictionary.txt",
"description": "Words from bash scripts that should be ignored.",
"addWords": true
},
{
"name": "html-words",
"path": "./cspell-dictionaries/html-words.txt",
"description": "Words from HTML that should be ignored.",
"addWords": true
},
{
"name": "kql-functions",
"path": "./cspell-dictionaries/kql-functions.txt",
"description": "Functions from KQL that should be ignored.",
"addWords": true
},
{
"name": "publisher-ids",
"path": "./cspell-dictionaries/publisher-ids.txt",
"description": "Publisher ids, so we still spell check metadata file.",
"addWords": true
},
{
"name": "dataconnector-words",
"path": "./cspell-dictionaries/dataconnector-words.txt",
"description": "Words from data connector configurations that should be ignored.",
"addWords": true
},
{
"name": "powershell-words",
"path": "./cspell-dictionaries/powershell-words.txt",
"description": "Functions in Powershell that create false positives.",
"addWords": true
},
{
"name": "variable-names",
"path": "./cspell-dictionaries/variables.txt",
"description": "Variable names to be ignored.",
"addWords": true
}
]
}