forked from streetsidesoftware/cspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cspell.schema.json
621 lines (621 loc) · 17.7 KB
/
cspell.schema.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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"definitions": {
"DictionaryDefinition": {
"additionalProperties": false,
"properties": {
"description": {
"description": "Optional description",
"type": "string"
},
"file": {
"description": "File name",
"type": "string"
},
"name": {
"$ref": "#/definitions/DictionaryId",
"description": "The reference name of the dictionary, used with program language settings"
},
"path": {
"description": "Path to the file, if undefined the path to the extension dictionaries is assumed",
"type": "string"
},
"repMap": {
"$ref": "#/definitions/ReplaceMap",
"description": "Replacement pairs"
},
"type": {
"$ref": "#/definitions/DictionaryFileTypes",
"default": "S",
"description": "Type of file:\nS - single word per line,\nW - each line can contain one or more words separated by space,\nC - each line is treated like code (Camel Case is allowed)\nDefault is S\nC is the slowest to load due to the need to split each line based upon code splitting rules."
},
"useCompounds": {
"description": "Use Compounds",
"type": "boolean"
}
},
"required": [
"name",
"file"
],
"type": "object"
},
"DictionaryFileTypes": {
"enum": [
"S",
"W",
"C",
"T"
],
"type": "string"
},
"DictionaryId": {
"description": "This matches the name in a dictionary definition",
"type": "string"
},
"Glob": {
"description": "These are glob expressions",
"type": "string"
},
"LanguageId": {
"description": "This can be '*', 'typescript', 'cpp', 'json', etc.",
"type": "string"
},
"LanguageSetting": {
"additionalProperties": false,
"properties": {
"allowCompoundWords": {
"default": false,
"description": "True to enable compound word checking.",
"type": "boolean"
},
"caseSensitive": {
"default": false,
"description": "Words must match case rules.",
"type": "boolean"
},
"description": {
"description": "Optional description of configuration",
"type": "string"
},
"dictionaries": {
"description": "Optional list of dictionaries to use.",
"items": {
"$ref": "#/definitions/DictionaryId"
},
"type": "array"
},
"dictionaryDefinitions": {
"description": "Define additional available dictionaries",
"items": {
"$ref": "#/definitions/DictionaryDefinition"
},
"type": "array"
},
"enabled": {
"default": true,
"description": "Is the spell checker enabled",
"type": "boolean"
},
"flagWords": {
"description": "list of words to always be considered incorrect.",
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"description": "Optional identifier",
"type": "string"
},
"ignoreRegExpList": {
"$ref": "#/definitions/RegExpList",
"description": "List of RegExp patterns or Pattern names to exclude from spell checking\nExample: [\"href\"] - to exclude html href"
},
"includeRegExpList": {
"$ref": "#/definitions/RegExpList",
"description": "List of RegExp patterns or defined Pattern names to define the text to be included for spell checking.\nIf includeRegExpList is defined, ONLY, text matching the included patterns will be checked."
},
"languageId": {
"anyOf": [
{
"$ref": "#/definitions/LanguageId"
},
{
"items": {
"$ref": "#/definitions/LanguageId"
},
"type": "array"
}
],
"description": "The language id. Ex: \"typescript\", \"html\", or \"php\". \"*\" -- will match all languages"
},
"local": {
"anyOf": [
{
"$ref": "#/definitions/LocalId"
},
{
"items": {
"$ref": "#/definitions/LocalId"
},
"type": "array"
}
],
"description": "The local filter, matches against the language. This can be a comma separated list. \"*\" will match all locals."
},
"name": {
"description": "Optional name of configuration",
"type": "string"
},
"patterns": {
"description": "Defines a list of patterns that can be used in ignoreRegExpList and includeRegExpList",
"items": {
"$ref": "#/definitions/RegExpPatternDefinition"
},
"type": "array"
},
"words": {
"description": "list of words to be always considered correct",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"languageId"
],
"type": "object"
},
"LocalId": {
"description": "This is a written language local like: 'en', 'en-GB', 'fr', 'es', 'de', etc.",
"type": "string"
},
"OverrideSettings": {
"additionalProperties": false,
"properties": {
"allowCompoundWords": {
"default": false,
"description": "True to enable compound word checking.",
"type": "boolean"
},
"caseSensitive": {
"default": false,
"description": "Words must match case rules.",
"type": "boolean"
},
"description": {
"description": "Optional description of configuration",
"type": "string"
},
"dictionaries": {
"description": "Optional list of dictionaries to use.",
"items": {
"$ref": "#/definitions/DictionaryId"
},
"type": "array"
},
"dictionaryDefinitions": {
"description": "Define additional available dictionaries",
"items": {
"$ref": "#/definitions/DictionaryDefinition"
},
"type": "array"
},
"enabled": {
"default": true,
"description": "Is the spell checker enabled",
"type": "boolean"
},
"enabledLanguageIds": {
"description": "languageIds for the files to spell check.",
"items": {
"$ref": "#/definitions/LanguageId"
},
"type": "array"
},
"filename": {
"anyOf": [
{
"$ref": "#/definitions/Glob"
},
{
"items": {
"$ref": "#/definitions/Glob"
},
"type": "array"
}
],
"description": "Glob pattern or patterns to match against"
},
"flagWords": {
"description": "list of words to always be considered incorrect.",
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"description": "Optional identifier",
"type": "string"
},
"ignorePaths": {
"description": "Glob file patterns to be ignored",
"items": {
"$ref": "#/definitions/Glob"
},
"type": "array"
},
"ignoreRegExpList": {
"$ref": "#/definitions/RegExpList",
"description": "List of RegExp patterns or Pattern names to exclude from spell checking\nExample: [\"href\"] - to exclude html href"
},
"ignoreWords": {
"description": "list of words to be ignored",
"items": {
"type": "string"
},
"type": "array"
},
"includeRegExpList": {
"$ref": "#/definitions/RegExpList",
"description": "List of RegExp patterns or defined Pattern names to define the text to be included for spell checking.\nIf includeRegExpList is defined, ONLY, text matching the included patterns will be checked."
},
"language": {
"$ref": "#/definitions/LocalId",
"default": "en",
"description": "Sets the local"
},
"languageId": {
"$ref": "#/definitions/LanguageId",
"description": "Sets the programming language id"
},
"languageSettings": {
"description": "Additional settings for individual languages.",
"items": {
"$ref": "#/definitions/LanguageSetting"
},
"type": "array"
},
"maxDuplicateProblems": {
"default": 5,
"description": "The maximum number of times the same word can be flagged as an error in a file.",
"type": "number"
},
"maxNumberOfProblems": {
"default": 100,
"description": "The maximum number of problems to report in a file.",
"type": "number"
},
"minWordLength": {
"default": 4,
"description": "The minimum length of a word before checking it against a dictionary.",
"type": "number"
},
"name": {
"description": "Optional name of configuration",
"type": "string"
},
"numSuggestions": {
"default": 10,
"description": "Number of suggestions to make",
"type": "number"
},
"patterns": {
"description": "Defines a list of patterns that can be used in ignoreRegExpList and includeRegExpList",
"items": {
"$ref": "#/definitions/RegExpPatternDefinition"
},
"type": "array"
},
"words": {
"description": "list of words to be always considered correct",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"filename"
],
"type": "object"
},
"Pattern": {
"anyOf": [
{
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"global": {
"type": "boolean"
},
"ignoreCase": {
"type": "boolean"
},
"lastIndex": {
"type": "number"
},
"multiline": {
"type": "boolean"
},
"source": {
"type": "string"
}
},
"required": [
"source",
"global",
"ignoreCase",
"multiline",
"lastIndex"
],
"type": "object"
}
]
},
"PatternId": {
"description": "This matches the name in a pattern definition",
"type": "string"
},
"PatternRef": {
"anyOf": [
{
"$ref": "#/definitions/Pattern"
},
{
"$ref": "#/definitions/PatternId"
},
{
"$ref": "#/definitions/PreDefinedPatterns"
}
],
"description": "A PatternRef is a Pattern or PatternId."
},
"PreDefinedPatterns": {
"enum": [
"Base64",
"CStyleComment",
"Email",
"EscapeCharacters",
"HexDigits",
"HexValues",
"href",
"PhpHereDoc",
"PublicKey",
"RsaCert",
"SHA",
"SpellCheckerDisable",
"string",
"Urls",
"Everything"
],
"type": "string"
},
"RegExpList": {
"items": {
"$ref": "#/definitions/PatternRef"
},
"type": "array"
},
"RegExpPatternDefinition": {
"additionalProperties": false,
"properties": {
"description": {
"description": "Description of the pattern.",
"type": "string"
},
"name": {
"$ref": "#/definitions/PatternId",
"description": "Pattern name, used as an identifier in ignoreRegExpList and includeRegExpList\nIt is possible to redefine one of the predefined patterns to override its value."
},
"pattern": {
"$ref": "#/definitions/Pattern",
"description": "RegExp pattern"
}
},
"required": [
"name",
"pattern"
],
"type": "object"
},
"ReplaceEntry": {
"items": [
{
"type": "string"
},
{
"type": "string"
}
],
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"ReplaceMap": {
"items": {
"$ref": "#/definitions/ReplaceEntry"
},
"type": "array"
}
},
"properties": {
"$schema": {
"type": "string"
},
"allowCompoundWords": {
"default": false,
"description": "True to enable compound word checking.",
"type": "boolean"
},
"caseSensitive": {
"default": false,
"description": "Words must match case rules.",
"type": "boolean"
},
"description": {
"description": "Optional description of configuration",
"type": "string"
},
"dictionaries": {
"description": "Optional list of dictionaries to use.",
"items": {
"$ref": "#/definitions/DictionaryId"
},
"type": "array"
},
"dictionaryDefinitions": {
"description": "Define additional available dictionaries",
"items": {
"$ref": "#/definitions/DictionaryDefinition"
},
"type": "array"
},
"enabled": {
"default": true,
"description": "Is the spell checker enabled",
"type": "boolean"
},
"enabledLanguageIds": {
"description": "languageIds for the files to spell check.",
"items": {
"$ref": "#/definitions/LanguageId"
},
"type": "array"
},
"flagWords": {
"description": "list of words to always be considered incorrect.",
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"description": "Optional identifier",
"type": "string"
},
"ignorePaths": {
"description": "Glob file patterns to be ignored",
"items": {
"$ref": "#/definitions/Glob"
},
"type": "array"
},
"ignoreRegExpList": {
"$ref": "#/definitions/RegExpList",
"description": "List of RegExp patterns or Pattern names to exclude from spell checking\nExample: [\"href\"] - to exclude html href"
},
"ignoreWords": {
"description": "list of words to be ignored",
"items": {
"type": "string"
},
"type": "array"
},
"import": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "Other settings files to be included"
},
"includeRegExpList": {
"$ref": "#/definitions/RegExpList",
"description": "List of RegExp patterns or defined Pattern names to define the text to be included for spell checking.\nIf includeRegExpList is defined, ONLY, text matching the included patterns will be checked."
},
"language": {
"$ref": "#/definitions/LocalId",
"default": "en",
"description": "Current active spelling language\nExample: \"en-GB\" for British English\nExample: \"en,nl\" to enable both English and Dutch"
},
"languageId": {
"$ref": "#/definitions/LanguageId",
"description": "Forces the spell checker to assume a give language id. Used mainly as an Override."
},
"languageSettings": {
"description": "Additional settings for individual languages.",
"items": {
"$ref": "#/definitions/LanguageSetting"
},
"type": "array"
},
"maxDuplicateProblems": {
"default": 5,
"description": "The maximum number of times the same word can be flagged as an error in a file.",
"type": "number"
},
"maxNumberOfProblems": {
"default": 100,
"description": "The maximum number of problems to report in a file.",
"type": "number"
},
"minWordLength": {
"default": 4,
"description": "The minimum length of a word before checking it against a dictionary.",
"type": "number"
},
"name": {
"description": "Optional name of configuration",
"type": "string"
},
"numSuggestions": {
"default": 10,
"description": "Number of suggestions to make",
"type": "number"
},
"overrides": {
"description": "Overrides to apply based upon the file path.",
"items": {
"$ref": "#/definitions/OverrideSettings"
},
"type": "array"
},
"patterns": {
"description": "Defines a list of patterns that can be used in ignoreRegExpList and includeRegExpList",
"items": {
"$ref": "#/definitions/RegExpPatternDefinition"
},
"type": "array"
},
"showStatus": {
"description": "Show status",
"type": "boolean"
},
"spellCheckDelayMs": {
"description": "Delay in ms after a document has changed before checking it for spelling errors.",
"type": "number"
},
"userWords": {
"description": "Words to add to dictionary -- should only be in the user config file.",
"items": {
"type": "string"
},
"type": "array"
},
"version": {
"default": "0.1",
"description": "Configuration format version of the setting file.",
"type": "string"
},
"words": {
"description": "list of words to be always considered correct",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}