rapid-spreadjs 1.0.15 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1596 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/schema/markdownlint-config-schema.json",
4
- "title": "markdownlint configuration schema",
5
- "type": "object",
6
- "properties": {
7
- "$schema": {
8
- "description": "JSON Schema URI (expected by some editors)",
9
- "type": "string",
10
- "default": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/schema/markdownlint-config-schema.json"
11
- },
12
- "default": {
13
- "description": "Default state for all rules",
14
- "type": "boolean",
15
- "default": true
16
- },
17
- "extends": {
18
- "description": "Path to configuration file to extend",
19
- "type": ["string", "null"],
20
- "default": null
21
- },
22
- "MD001": {
23
- "description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md001.md",
24
- "type": "boolean",
25
- "default": true
26
- },
27
- "heading-increment": {
28
- "description": "MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md001.md",
29
- "type": "boolean",
30
- "default": true
31
- },
32
- "MD003": {
33
- "description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md003.md",
34
- "type": ["boolean", "object"],
35
- "default": true,
36
- "properties": {
37
- "style": {
38
- "description": "Heading style",
39
- "type": "string",
40
- "enum": [
41
- "consistent",
42
- "atx",
43
- "atx_closed",
44
- "setext",
45
- "setext_with_atx",
46
- "setext_with_atx_closed"
47
- ],
48
- "default": "consistent"
49
- }
50
- },
51
- "additionalProperties": false
52
- },
53
- "heading-style": {
54
- "description": "MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md003.md",
55
- "type": ["boolean", "object"],
56
- "default": true,
57
- "properties": {
58
- "style": {
59
- "description": "Heading style",
60
- "type": "string",
61
- "enum": [
62
- "consistent",
63
- "atx",
64
- "atx_closed",
65
- "setext",
66
- "setext_with_atx",
67
- "setext_with_atx_closed"
68
- ],
69
- "default": "consistent"
70
- }
71
- },
72
- "additionalProperties": false
73
- },
74
- "MD004": {
75
- "description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md004.md",
76
- "type": ["boolean", "object"],
77
- "default": true,
78
- "properties": {
79
- "style": {
80
- "description": "List style",
81
- "type": "string",
82
- "enum": [
83
- "consistent",
84
- "asterisk",
85
- "plus",
86
- "dash",
87
- "sublist"
88
- ],
89
- "default": "consistent"
90
- }
91
- },
92
- "additionalProperties": false
93
- },
94
- "ul-style": {
95
- "description": "MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md004.md",
96
- "type": ["boolean", "object"],
97
- "default": true,
98
- "properties": {
99
- "style": {
100
- "description": "List style",
101
- "type": "string",
102
- "enum": [
103
- "consistent",
104
- "asterisk",
105
- "plus",
106
- "dash",
107
- "sublist"
108
- ],
109
- "default": "consistent"
110
- }
111
- },
112
- "additionalProperties": false
113
- },
114
- "MD005": {
115
- "description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md005.md",
116
- "type": "boolean",
117
- "default": true
118
- },
119
- "list-indent": {
120
- "description": "MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md005.md",
121
- "type": "boolean",
122
- "default": true
123
- },
124
- "MD007": {
125
- "description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md007.md",
126
- "type": ["boolean", "object"],
127
- "default": true,
128
- "properties": {
129
- "indent": {
130
- "description": "Spaces for indent",
131
- "type": "integer",
132
- "minimum": 1,
133
- "default": 2
134
- },
135
- "start_indented": {
136
- "description": "Whether to indent the first level of the list",
137
- "type": "boolean",
138
- "default": false
139
- },
140
- "start_indent": {
141
- "description": "Spaces for first level indent (when start_indented is set)",
142
- "type": "integer",
143
- "minimum": 1,
144
- "default": 2
145
- }
146
- },
147
- "additionalProperties": false
148
- },
149
- "ul-indent": {
150
- "description": "MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md007.md",
151
- "type": ["boolean", "object"],
152
- "default": true,
153
- "properties": {
154
- "indent": {
155
- "description": "Spaces for indent",
156
- "type": "integer",
157
- "minimum": 1,
158
- "default": 2
159
- },
160
- "start_indented": {
161
- "description": "Whether to indent the first level of the list",
162
- "type": "boolean",
163
- "default": false
164
- },
165
- "start_indent": {
166
- "description": "Spaces for first level indent (when start_indented is set)",
167
- "type": "integer",
168
- "minimum": 1,
169
- "default": 2
170
- }
171
- },
172
- "additionalProperties": false
173
- },
174
- "MD009": {
175
- "description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md009.md",
176
- "type": ["boolean", "object"],
177
- "default": true,
178
- "properties": {
179
- "br_spaces": {
180
- "description": "Spaces for line break",
181
- "type": "integer",
182
- "minimum": 0,
183
- "default": 2
184
- },
185
- "list_item_empty_lines": {
186
- "description": "Allow spaces for empty lines in list items",
187
- "type": "boolean",
188
- "default": false
189
- },
190
- "strict": {
191
- "description": "Include unnecessary breaks",
192
- "type": "boolean",
193
- "default": false
194
- }
195
- },
196
- "additionalProperties": false
197
- },
198
- "no-trailing-spaces": {
199
- "description": "MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md009.md",
200
- "type": ["boolean", "object"],
201
- "default": true,
202
- "properties": {
203
- "br_spaces": {
204
- "description": "Spaces for line break",
205
- "type": "integer",
206
- "minimum": 0,
207
- "default": 2
208
- },
209
- "list_item_empty_lines": {
210
- "description": "Allow spaces for empty lines in list items",
211
- "type": "boolean",
212
- "default": false
213
- },
214
- "strict": {
215
- "description": "Include unnecessary breaks",
216
- "type": "boolean",
217
- "default": false
218
- }
219
- },
220
- "additionalProperties": false
221
- },
222
- "MD010": {
223
- "description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md010.md",
224
- "type": ["boolean", "object"],
225
- "default": true,
226
- "properties": {
227
- "code_blocks": {
228
- "description": "Include code blocks",
229
- "type": "boolean",
230
- "default": true
231
- },
232
- "ignore_code_languages": {
233
- "description": "Fenced code languages to ignore",
234
- "type": "array",
235
- "items": {
236
- "type": "string"
237
- },
238
- "default": []
239
- },
240
- "spaces_per_tab": {
241
- "description": "Number of spaces for each hard tab",
242
- "type": "integer",
243
- "minimum": 0,
244
- "default": 1
245
- }
246
- },
247
- "additionalProperties": false
248
- },
249
- "no-hard-tabs": {
250
- "description": "MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md010.md",
251
- "type": ["boolean", "object"],
252
- "default": true,
253
- "properties": {
254
- "code_blocks": {
255
- "description": "Include code blocks",
256
- "type": "boolean",
257
- "default": true
258
- },
259
- "ignore_code_languages": {
260
- "description": "Fenced code languages to ignore",
261
- "type": "array",
262
- "items": {
263
- "type": "string"
264
- },
265
- "default": []
266
- },
267
- "spaces_per_tab": {
268
- "description": "Number of spaces for each hard tab",
269
- "type": "integer",
270
- "minimum": 0,
271
- "default": 1
272
- }
273
- },
274
- "additionalProperties": false
275
- },
276
- "MD011": {
277
- "description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md011.md",
278
- "type": "boolean",
279
- "default": true
280
- },
281
- "no-reversed-links": {
282
- "description": "MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md011.md",
283
- "type": "boolean",
284
- "default": true
285
- },
286
- "MD012": {
287
- "description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md012.md",
288
- "type": ["boolean", "object"],
289
- "default": true,
290
- "properties": {
291
- "maximum": {
292
- "description": "Consecutive blank lines",
293
- "type": "integer",
294
- "minimum": 1,
295
- "default": 1
296
- }
297
- },
298
- "additionalProperties": false
299
- },
300
- "no-multiple-blanks": {
301
- "description": "MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md012.md",
302
- "type": ["boolean", "object"],
303
- "default": true,
304
- "properties": {
305
- "maximum": {
306
- "description": "Consecutive blank lines",
307
- "type": "integer",
308
- "minimum": 1,
309
- "default": 1
310
- }
311
- },
312
- "additionalProperties": false
313
- },
314
- "MD013": {
315
- "description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.md",
316
- "type": ["boolean", "object"],
317
- "default": true,
318
- "properties": {
319
- "line_length": {
320
- "description": "Number of characters",
321
- "type": "integer",
322
- "minimum": 1,
323
- "default": 80
324
- },
325
- "heading_line_length": {
326
- "description": "Number of characters for headings",
327
- "type": "integer",
328
- "minimum": 1,
329
- "default": 80
330
- },
331
- "code_block_line_length": {
332
- "description": "Number of characters for code blocks",
333
- "type": "integer",
334
- "minimum": 1,
335
- "default": 80
336
- },
337
- "code_blocks": {
338
- "description": "Include code blocks",
339
- "type": "boolean",
340
- "default": true
341
- },
342
- "tables": {
343
- "description": "Include tables",
344
- "type": "boolean",
345
- "default": true
346
- },
347
- "headings": {
348
- "description": "Include headings",
349
- "type": "boolean",
350
- "default": true
351
- },
352
- "strict": {
353
- "description": "Strict length checking",
354
- "type": "boolean",
355
- "default": false
356
- },
357
- "stern": {
358
- "description": "Stern length checking",
359
- "type": "boolean",
360
- "default": false
361
- }
362
- },
363
- "additionalProperties": false
364
- },
365
- "line-length": {
366
- "description": "MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.md",
367
- "type": ["boolean", "object"],
368
- "default": true,
369
- "properties": {
370
- "line_length": {
371
- "description": "Number of characters",
372
- "type": "integer",
373
- "minimum": 1,
374
- "default": 80
375
- },
376
- "heading_line_length": {
377
- "description": "Number of characters for headings",
378
- "type": "integer",
379
- "minimum": 1,
380
- "default": 80
381
- },
382
- "code_block_line_length": {
383
- "description": "Number of characters for code blocks",
384
- "type": "integer",
385
- "minimum": 1,
386
- "default": 80
387
- },
388
- "code_blocks": {
389
- "description": "Include code blocks",
390
- "type": "boolean",
391
- "default": true
392
- },
393
- "tables": {
394
- "description": "Include tables",
395
- "type": "boolean",
396
- "default": true
397
- },
398
- "headings": {
399
- "description": "Include headings",
400
- "type": "boolean",
401
- "default": true
402
- },
403
- "strict": {
404
- "description": "Strict length checking",
405
- "type": "boolean",
406
- "default": false
407
- },
408
- "stern": {
409
- "description": "Stern length checking",
410
- "type": "boolean",
411
- "default": false
412
- }
413
- },
414
- "additionalProperties": false
415
- },
416
- "MD014": {
417
- "description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md014.md",
418
- "type": "boolean",
419
- "default": true
420
- },
421
- "commands-show-output": {
422
- "description": "MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md014.md",
423
- "type": "boolean",
424
- "default": true
425
- },
426
- "MD018": {
427
- "description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md018.md",
428
- "type": "boolean",
429
- "default": true
430
- },
431
- "no-missing-space-atx": {
432
- "description": "MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md018.md",
433
- "type": "boolean",
434
- "default": true
435
- },
436
- "MD019": {
437
- "description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md019.md",
438
- "type": "boolean",
439
- "default": true
440
- },
441
- "no-multiple-space-atx": {
442
- "description": "MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md019.md",
443
- "type": "boolean",
444
- "default": true
445
- },
446
- "MD020": {
447
- "description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md020.md",
448
- "type": "boolean",
449
- "default": true
450
- },
451
- "no-missing-space-closed-atx": {
452
- "description": "MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md020.md",
453
- "type": "boolean",
454
- "default": true
455
- },
456
- "MD021": {
457
- "description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md021.md",
458
- "type": "boolean",
459
- "default": true
460
- },
461
- "no-multiple-space-closed-atx": {
462
- "description": "MD021/no-multiple-space-closed-atx : Multiple spaces inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md021.md",
463
- "type": "boolean",
464
- "default": true
465
- },
466
- "MD022": {
467
- "description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md022.md",
468
- "type": ["boolean", "object"],
469
- "default": true,
470
- "properties": {
471
- "lines_above": {
472
- "description": "Blank lines above heading",
473
- "type": ["integer", "array"],
474
- "items": {
475
- "type": "integer"
476
- },
477
- "minimum": -1,
478
- "default": 1
479
- },
480
- "lines_below": {
481
- "description": "Blank lines below heading",
482
- "type": ["integer", "array"],
483
- "items": {
484
- "type": "integer"
485
- },
486
- "minimum": -1,
487
- "default": 1
488
- }
489
- },
490
- "additionalProperties": false
491
- },
492
- "blanks-around-headings": {
493
- "description": "MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md022.md",
494
- "type": ["boolean", "object"],
495
- "default": true,
496
- "properties": {
497
- "lines_above": {
498
- "description": "Blank lines above heading",
499
- "type": ["integer", "array"],
500
- "items": {
501
- "type": "integer"
502
- },
503
- "minimum": -1,
504
- "default": 1
505
- },
506
- "lines_below": {
507
- "description": "Blank lines below heading",
508
- "type": ["integer", "array"],
509
- "items": {
510
- "type": "integer"
511
- },
512
- "minimum": -1,
513
- "default": 1
514
- }
515
- },
516
- "additionalProperties": false
517
- },
518
- "MD023": {
519
- "description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md023.md",
520
- "type": "boolean",
521
- "default": true
522
- },
523
- "heading-start-left": {
524
- "description": "MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md023.md",
525
- "type": "boolean",
526
- "default": true
527
- },
528
- "MD024": {
529
- "description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md024.md",
530
- "type": ["boolean", "object"],
531
- "default": true,
532
- "properties": {
533
- "siblings_only": {
534
- "description": "Only check sibling headings",
535
- "type": "boolean",
536
- "default": false
537
- }
538
- },
539
- "additionalProperties": false
540
- },
541
- "no-duplicate-heading": {
542
- "description": "MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md024.md",
543
- "type": ["boolean", "object"],
544
- "default": true,
545
- "properties": {
546
- "siblings_only": {
547
- "description": "Only check sibling headings",
548
- "type": "boolean",
549
- "default": false
550
- }
551
- },
552
- "additionalProperties": false
553
- },
554
- "MD025": {
555
- "description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md025.md",
556
- "type": ["boolean", "object"],
557
- "default": true,
558
- "properties": {
559
- "level": {
560
- "description": "Heading level",
561
- "type": "integer",
562
- "minimum": 1,
563
- "maximum": 6,
564
- "default": 1
565
- },
566
- "front_matter_title": {
567
- "description": "RegExp for matching title in front matter",
568
- "type": "string",
569
- "default": "^\\s*title\\s*[:=]"
570
- }
571
- },
572
- "additionalProperties": false
573
- },
574
- "single-title": {
575
- "description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md025.md",
576
- "type": ["boolean", "object"],
577
- "default": true,
578
- "properties": {
579
- "level": {
580
- "description": "Heading level",
581
- "type": "integer",
582
- "minimum": 1,
583
- "maximum": 6,
584
- "default": 1
585
- },
586
- "front_matter_title": {
587
- "description": "RegExp for matching title in front matter",
588
- "type": "string",
589
- "default": "^\\s*title\\s*[:=]"
590
- }
591
- },
592
- "additionalProperties": false
593
- },
594
- "single-h1": {
595
- "description": "MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md025.md",
596
- "type": ["boolean", "object"],
597
- "default": true,
598
- "properties": {
599
- "level": {
600
- "description": "Heading level",
601
- "type": "integer",
602
- "minimum": 1,
603
- "maximum": 6,
604
- "default": 1
605
- },
606
- "front_matter_title": {
607
- "description": "RegExp for matching title in front matter",
608
- "type": "string",
609
- "default": "^\\s*title\\s*[:=]"
610
- }
611
- },
612
- "additionalProperties": false
613
- },
614
- "MD026": {
615
- "description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md026.md",
616
- "type": ["boolean", "object"],
617
- "default": true,
618
- "properties": {
619
- "punctuation": {
620
- "description": "Punctuation characters",
621
- "type": "string",
622
- "default": ".,;:!。,;:!"
623
- }
624
- },
625
- "additionalProperties": false
626
- },
627
- "no-trailing-punctuation": {
628
- "description": "MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md026.md",
629
- "type": ["boolean", "object"],
630
- "default": true,
631
- "properties": {
632
- "punctuation": {
633
- "description": "Punctuation characters",
634
- "type": "string",
635
- "default": ".,;:!。,;:!"
636
- }
637
- },
638
- "additionalProperties": false
639
- },
640
- "MD027": {
641
- "description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md027.md",
642
- "type": "boolean",
643
- "default": true
644
- },
645
- "no-multiple-space-blockquote": {
646
- "description": "MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md027.md",
647
- "type": "boolean",
648
- "default": true
649
- },
650
- "MD028": {
651
- "description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md028.md",
652
- "type": "boolean",
653
- "default": true
654
- },
655
- "no-blanks-blockquote": {
656
- "description": "MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md028.md",
657
- "type": "boolean",
658
- "default": true
659
- },
660
- "MD029": {
661
- "description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md029.md",
662
- "type": ["boolean", "object"],
663
- "default": true,
664
- "properties": {
665
- "style": {
666
- "description": "List style",
667
- "type": "string",
668
- "enum": ["one", "ordered", "one_or_ordered", "zero"],
669
- "default": "one_or_ordered"
670
- }
671
- },
672
- "additionalProperties": false
673
- },
674
- "ol-prefix": {
675
- "description": "MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md029.md",
676
- "type": ["boolean", "object"],
677
- "default": true,
678
- "properties": {
679
- "style": {
680
- "description": "List style",
681
- "type": "string",
682
- "enum": ["one", "ordered", "one_or_ordered", "zero"],
683
- "default": "one_or_ordered"
684
- }
685
- },
686
- "additionalProperties": false
687
- },
688
- "MD030": {
689
- "description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md030.md",
690
- "type": ["boolean", "object"],
691
- "default": true,
692
- "properties": {
693
- "ul_single": {
694
- "description": "Spaces for single-line unordered list items",
695
- "type": "integer",
696
- "minimum": 1,
697
- "default": 1
698
- },
699
- "ol_single": {
700
- "description": "Spaces for single-line ordered list items",
701
- "type": "integer",
702
- "minimum": 1,
703
- "default": 1
704
- },
705
- "ul_multi": {
706
- "description": "Spaces for multi-line unordered list items",
707
- "type": "integer",
708
- "minimum": 1,
709
- "default": 1
710
- },
711
- "ol_multi": {
712
- "description": "Spaces for multi-line ordered list items",
713
- "type": "integer",
714
- "minimum": 1,
715
- "default": 1
716
- }
717
- },
718
- "additionalProperties": false
719
- },
720
- "list-marker-space": {
721
- "description": "MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md030.md",
722
- "type": ["boolean", "object"],
723
- "default": true,
724
- "properties": {
725
- "ul_single": {
726
- "description": "Spaces for single-line unordered list items",
727
- "type": "integer",
728
- "minimum": 1,
729
- "default": 1
730
- },
731
- "ol_single": {
732
- "description": "Spaces for single-line ordered list items",
733
- "type": "integer",
734
- "minimum": 1,
735
- "default": 1
736
- },
737
- "ul_multi": {
738
- "description": "Spaces for multi-line unordered list items",
739
- "type": "integer",
740
- "minimum": 1,
741
- "default": 1
742
- },
743
- "ol_multi": {
744
- "description": "Spaces for multi-line ordered list items",
745
- "type": "integer",
746
- "minimum": 1,
747
- "default": 1
748
- }
749
- },
750
- "additionalProperties": false
751
- },
752
- "MD031": {
753
- "description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md031.md",
754
- "type": ["boolean", "object"],
755
- "default": true,
756
- "properties": {
757
- "list_items": {
758
- "description": "Include list items",
759
- "type": "boolean",
760
- "default": true
761
- }
762
- },
763
- "additionalProperties": false
764
- },
765
- "blanks-around-fences": {
766
- "description": "MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md031.md",
767
- "type": ["boolean", "object"],
768
- "default": true,
769
- "properties": {
770
- "list_items": {
771
- "description": "Include list items",
772
- "type": "boolean",
773
- "default": true
774
- }
775
- },
776
- "additionalProperties": false
777
- },
778
- "MD032": {
779
- "description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md032.md",
780
- "type": "boolean",
781
- "default": true
782
- },
783
- "blanks-around-lists": {
784
- "description": "MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md032.md",
785
- "type": "boolean",
786
- "default": true
787
- },
788
- "MD033": {
789
- "description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md033.md",
790
- "type": ["boolean", "object"],
791
- "default": true,
792
- "properties": {
793
- "allowed_elements": {
794
- "description": "Allowed elements",
795
- "type": "array",
796
- "items": {
797
- "type": "string"
798
- },
799
- "default": []
800
- }
801
- },
802
- "additionalProperties": false
803
- },
804
- "no-inline-html": {
805
- "description": "MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md033.md",
806
- "type": ["boolean", "object"],
807
- "default": true,
808
- "properties": {
809
- "allowed_elements": {
810
- "description": "Allowed elements",
811
- "type": "array",
812
- "items": {
813
- "type": "string"
814
- },
815
- "default": []
816
- }
817
- },
818
- "additionalProperties": false
819
- },
820
- "MD034": {
821
- "description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md034.md",
822
- "type": "boolean",
823
- "default": true
824
- },
825
- "no-bare-urls": {
826
- "description": "MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md034.md",
827
- "type": "boolean",
828
- "default": true
829
- },
830
- "MD035": {
831
- "description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md035.md",
832
- "type": ["boolean", "object"],
833
- "default": true,
834
- "properties": {
835
- "style": {
836
- "description": "Horizontal rule style",
837
- "type": "string",
838
- "default": "consistent"
839
- }
840
- },
841
- "additionalProperties": false
842
- },
843
- "hr-style": {
844
- "description": "MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md035.md",
845
- "type": ["boolean", "object"],
846
- "default": true,
847
- "properties": {
848
- "style": {
849
- "description": "Horizontal rule style",
850
- "type": "string",
851
- "default": "consistent"
852
- }
853
- },
854
- "additionalProperties": false
855
- },
856
- "MD036": {
857
- "description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md036.md",
858
- "type": ["boolean", "object"],
859
- "default": true,
860
- "properties": {
861
- "punctuation": {
862
- "description": "Punctuation characters",
863
- "type": "string",
864
- "default": ".,;:!?。,;:!?"
865
- }
866
- },
867
- "additionalProperties": false
868
- },
869
- "no-emphasis-as-heading": {
870
- "description": "MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md036.md",
871
- "type": ["boolean", "object"],
872
- "default": true,
873
- "properties": {
874
- "punctuation": {
875
- "description": "Punctuation characters",
876
- "type": "string",
877
- "default": ".,;:!?。,;:!?"
878
- }
879
- },
880
- "additionalProperties": false
881
- },
882
- "MD037": {
883
- "description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md037.md",
884
- "type": "boolean",
885
- "default": true
886
- },
887
- "no-space-in-emphasis": {
888
- "description": "MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md037.md",
889
- "type": "boolean",
890
- "default": true
891
- },
892
- "MD038": {
893
- "description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md038.md",
894
- "type": "boolean",
895
- "default": true
896
- },
897
- "no-space-in-code": {
898
- "description": "MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md038.md",
899
- "type": "boolean",
900
- "default": true
901
- },
902
- "MD039": {
903
- "description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md039.md",
904
- "type": "boolean",
905
- "default": true
906
- },
907
- "no-space-in-links": {
908
- "description": "MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md039.md",
909
- "type": "boolean",
910
- "default": true
911
- },
912
- "MD040": {
913
- "description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md040.md",
914
- "type": ["boolean", "object"],
915
- "default": true,
916
- "properties": {
917
- "allowed_languages": {
918
- "description": "List of languages",
919
- "type": "array",
920
- "items": {
921
- "type": "string"
922
- },
923
- "default": []
924
- },
925
- "language_only": {
926
- "description": "Require language only",
927
- "type": "boolean",
928
- "default": false
929
- }
930
- },
931
- "additionalProperties": false
932
- },
933
- "fenced-code-language": {
934
- "description": "MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md040.md",
935
- "type": ["boolean", "object"],
936
- "default": true,
937
- "properties": {
938
- "allowed_languages": {
939
- "description": "List of languages",
940
- "type": "array",
941
- "items": {
942
- "type": "string"
943
- },
944
- "default": []
945
- },
946
- "language_only": {
947
- "description": "Require language only",
948
- "type": "boolean",
949
- "default": false
950
- }
951
- },
952
- "additionalProperties": false
953
- },
954
- "MD041": {
955
- "description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md041.md",
956
- "type": ["boolean", "object"],
957
- "default": true,
958
- "properties": {
959
- "level": {
960
- "description": "Heading level",
961
- "type": "integer",
962
- "minimum": 1,
963
- "maximum": 6,
964
- "default": 1
965
- },
966
- "front_matter_title": {
967
- "description": "RegExp for matching title in front matter",
968
- "type": "string",
969
- "default": "^\\s*title\\s*[:=]"
970
- }
971
- },
972
- "additionalProperties": false
973
- },
974
- "first-line-heading": {
975
- "description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md041.md",
976
- "type": ["boolean", "object"],
977
- "default": true,
978
- "properties": {
979
- "level": {
980
- "description": "Heading level",
981
- "type": "integer",
982
- "minimum": 1,
983
- "maximum": 6,
984
- "default": 1
985
- },
986
- "front_matter_title": {
987
- "description": "RegExp for matching title in front matter",
988
- "type": "string",
989
- "default": "^\\s*title\\s*[:=]"
990
- }
991
- },
992
- "additionalProperties": false
993
- },
994
- "first-line-h1": {
995
- "description": "MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md041.md",
996
- "type": ["boolean", "object"],
997
- "default": true,
998
- "properties": {
999
- "level": {
1000
- "description": "Heading level",
1001
- "type": "integer",
1002
- "minimum": 1,
1003
- "maximum": 6,
1004
- "default": 1
1005
- },
1006
- "front_matter_title": {
1007
- "description": "RegExp for matching title in front matter",
1008
- "type": "string",
1009
- "default": "^\\s*title\\s*[:=]"
1010
- }
1011
- },
1012
- "additionalProperties": false
1013
- },
1014
- "MD042": {
1015
- "description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md042.md",
1016
- "type": "boolean",
1017
- "default": true
1018
- },
1019
- "no-empty-links": {
1020
- "description": "MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md042.md",
1021
- "type": "boolean",
1022
- "default": true
1023
- },
1024
- "MD043": {
1025
- "description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md043.md",
1026
- "type": ["boolean", "object"],
1027
- "default": true,
1028
- "properties": {
1029
- "headings": {
1030
- "description": "List of headings",
1031
- "type": "array",
1032
- "items": {
1033
- "type": "string",
1034
- "pattern": "^(\\*|\\+|#{1,6} .*)$"
1035
- },
1036
- "default": []
1037
- },
1038
- "match_case": {
1039
- "description": "Match case of headings",
1040
- "type": "boolean",
1041
- "default": false
1042
- }
1043
- },
1044
- "additionalProperties": false
1045
- },
1046
- "required-headings": {
1047
- "description": "MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md043.md",
1048
- "type": ["boolean", "object"],
1049
- "default": true,
1050
- "properties": {
1051
- "headings": {
1052
- "description": "List of headings",
1053
- "type": "array",
1054
- "items": {
1055
- "type": "string",
1056
- "pattern": "^(\\*|\\+|#{1,6} .*)$"
1057
- },
1058
- "default": []
1059
- },
1060
- "match_case": {
1061
- "description": "Match case of headings",
1062
- "type": "boolean",
1063
- "default": false
1064
- }
1065
- },
1066
- "additionalProperties": false
1067
- },
1068
- "MD044": {
1069
- "description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md044.md",
1070
- "type": ["boolean", "object"],
1071
- "default": true,
1072
- "properties": {
1073
- "names": {
1074
- "description": "List of proper names",
1075
- "type": "array",
1076
- "items": {
1077
- "type": "string"
1078
- },
1079
- "default": []
1080
- },
1081
- "code_blocks": {
1082
- "description": "Include code blocks",
1083
- "type": "boolean",
1084
- "default": true
1085
- },
1086
- "html_elements": {
1087
- "description": "Include HTML elements",
1088
- "type": "boolean",
1089
- "default": true
1090
- }
1091
- },
1092
- "additionalProperties": false
1093
- },
1094
- "proper-names": {
1095
- "description": "MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md044.md",
1096
- "type": ["boolean", "object"],
1097
- "default": true,
1098
- "properties": {
1099
- "names": {
1100
- "description": "List of proper names",
1101
- "type": "array",
1102
- "items": {
1103
- "type": "string"
1104
- },
1105
- "default": []
1106
- },
1107
- "code_blocks": {
1108
- "description": "Include code blocks",
1109
- "type": "boolean",
1110
- "default": true
1111
- },
1112
- "html_elements": {
1113
- "description": "Include HTML elements",
1114
- "type": "boolean",
1115
- "default": true
1116
- }
1117
- },
1118
- "additionalProperties": false
1119
- },
1120
- "MD045": {
1121
- "description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md045.md",
1122
- "type": "boolean",
1123
- "default": true
1124
- },
1125
- "no-alt-text": {
1126
- "description": "MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md045.md",
1127
- "type": "boolean",
1128
- "default": true
1129
- },
1130
- "MD046": {
1131
- "description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md046.md",
1132
- "type": ["boolean", "object"],
1133
- "default": true,
1134
- "properties": {
1135
- "style": {
1136
- "description": "Block style",
1137
- "type": "string",
1138
- "enum": ["consistent", "fenced", "indented"],
1139
- "default": "consistent"
1140
- }
1141
- },
1142
- "additionalProperties": false
1143
- },
1144
- "code-block-style": {
1145
- "description": "MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md046.md",
1146
- "type": ["boolean", "object"],
1147
- "default": true,
1148
- "properties": {
1149
- "style": {
1150
- "description": "Block style",
1151
- "type": "string",
1152
- "enum": ["consistent", "fenced", "indented"],
1153
- "default": "consistent"
1154
- }
1155
- },
1156
- "additionalProperties": false
1157
- },
1158
- "MD047": {
1159
- "description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md047.md",
1160
- "type": "boolean",
1161
- "default": true
1162
- },
1163
- "single-trailing-newline": {
1164
- "description": "MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md047.md",
1165
- "type": "boolean",
1166
- "default": true
1167
- },
1168
- "MD048": {
1169
- "description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md048.md",
1170
- "type": ["boolean", "object"],
1171
- "default": true,
1172
- "properties": {
1173
- "style": {
1174
- "description": "Code fence style",
1175
- "type": "string",
1176
- "enum": ["consistent", "backtick", "tilde"],
1177
- "default": "consistent"
1178
- }
1179
- },
1180
- "additionalProperties": false
1181
- },
1182
- "code-fence-style": {
1183
- "description": "MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md048.md",
1184
- "type": ["boolean", "object"],
1185
- "default": true,
1186
- "properties": {
1187
- "style": {
1188
- "description": "Code fence style",
1189
- "type": "string",
1190
- "enum": ["consistent", "backtick", "tilde"],
1191
- "default": "consistent"
1192
- }
1193
- },
1194
- "additionalProperties": false
1195
- },
1196
- "MD049": {
1197
- "description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md049.md",
1198
- "type": ["boolean", "object"],
1199
- "default": true,
1200
- "properties": {
1201
- "style": {
1202
- "description": "Emphasis style",
1203
- "type": "string",
1204
- "enum": ["consistent", "asterisk", "underscore"],
1205
- "default": "consistent"
1206
- }
1207
- },
1208
- "additionalProperties": false
1209
- },
1210
- "emphasis-style": {
1211
- "description": "MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md049.md",
1212
- "type": ["boolean", "object"],
1213
- "default": true,
1214
- "properties": {
1215
- "style": {
1216
- "description": "Emphasis style",
1217
- "type": "string",
1218
- "enum": ["consistent", "asterisk", "underscore"],
1219
- "default": "consistent"
1220
- }
1221
- },
1222
- "additionalProperties": false
1223
- },
1224
- "MD050": {
1225
- "description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md050.md",
1226
- "type": ["boolean", "object"],
1227
- "default": true,
1228
- "properties": {
1229
- "style": {
1230
- "description": "Strong style",
1231
- "type": "string",
1232
- "enum": ["consistent", "asterisk", "underscore"],
1233
- "default": "consistent"
1234
- }
1235
- },
1236
- "additionalProperties": false
1237
- },
1238
- "strong-style": {
1239
- "description": "MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md050.md",
1240
- "type": ["boolean", "object"],
1241
- "default": true,
1242
- "properties": {
1243
- "style": {
1244
- "description": "Strong style",
1245
- "type": "string",
1246
- "enum": ["consistent", "asterisk", "underscore"],
1247
- "default": "consistent"
1248
- }
1249
- },
1250
- "additionalProperties": false
1251
- },
1252
- "MD051": {
1253
- "description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md051.md",
1254
- "type": ["boolean", "object"],
1255
- "default": true,
1256
- "properties": {
1257
- "ignore_case": {
1258
- "description": "Ignore case of fragments",
1259
- "type": "boolean",
1260
- "default": false
1261
- }
1262
- },
1263
- "additionalProperties": false
1264
- },
1265
- "link-fragments": {
1266
- "description": "MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md051.md",
1267
- "type": ["boolean", "object"],
1268
- "default": true,
1269
- "properties": {
1270
- "ignore_case": {
1271
- "description": "Ignore case of fragments",
1272
- "type": "boolean",
1273
- "default": false
1274
- }
1275
- },
1276
- "additionalProperties": false
1277
- },
1278
- "MD052": {
1279
- "description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md052.md",
1280
- "type": ["boolean", "object"],
1281
- "default": true,
1282
- "properties": {
1283
- "shortcut_syntax": {
1284
- "description": "Include shortcut syntax",
1285
- "type": "boolean",
1286
- "default": false
1287
- }
1288
- },
1289
- "additionalProperties": false
1290
- },
1291
- "reference-links-images": {
1292
- "description": "MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md052.md",
1293
- "type": ["boolean", "object"],
1294
- "default": true,
1295
- "properties": {
1296
- "shortcut_syntax": {
1297
- "description": "Include shortcut syntax",
1298
- "type": "boolean",
1299
- "default": false
1300
- }
1301
- },
1302
- "additionalProperties": false
1303
- },
1304
- "MD053": {
1305
- "description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md053.md",
1306
- "type": ["boolean", "object"],
1307
- "default": true,
1308
- "properties": {
1309
- "ignored_definitions": {
1310
- "description": "Ignored definitions",
1311
- "type": "array",
1312
- "items": {
1313
- "type": "string"
1314
- },
1315
- "default": ["//"]
1316
- }
1317
- },
1318
- "additionalProperties": false
1319
- },
1320
- "link-image-reference-definitions": {
1321
- "description": "MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md053.md",
1322
- "type": ["boolean", "object"],
1323
- "default": true,
1324
- "properties": {
1325
- "ignored_definitions": {
1326
- "description": "Ignored definitions",
1327
- "type": "array",
1328
- "items": {
1329
- "type": "string"
1330
- },
1331
- "default": ["//"]
1332
- }
1333
- },
1334
- "additionalProperties": false
1335
- },
1336
- "MD054": {
1337
- "description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md054.md",
1338
- "type": ["boolean", "object"],
1339
- "default": true,
1340
- "properties": {
1341
- "autolink": {
1342
- "description": "Allow autolinks",
1343
- "type": "boolean",
1344
- "default": true
1345
- },
1346
- "inline": {
1347
- "description": "Allow inline links and images",
1348
- "type": "boolean",
1349
- "default": true
1350
- },
1351
- "full": {
1352
- "description": "Allow full reference links and images",
1353
- "type": "boolean",
1354
- "default": true
1355
- },
1356
- "collapsed": {
1357
- "description": "Allow collapsed reference links and images",
1358
- "type": "boolean",
1359
- "default": true
1360
- },
1361
- "shortcut": {
1362
- "description": "Allow shortcut reference links and images",
1363
- "type": "boolean",
1364
- "default": true
1365
- },
1366
- "url_inline": {
1367
- "description": "Allow URLs as inline links",
1368
- "type": "boolean",
1369
- "default": true
1370
- }
1371
- },
1372
- "additionalProperties": false
1373
- },
1374
- "link-image-style": {
1375
- "description": "MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md054.md",
1376
- "type": ["boolean", "object"],
1377
- "default": true,
1378
- "properties": {
1379
- "autolink": {
1380
- "description": "Allow autolinks",
1381
- "type": "boolean",
1382
- "default": true
1383
- },
1384
- "inline": {
1385
- "description": "Allow inline links and images",
1386
- "type": "boolean",
1387
- "default": true
1388
- },
1389
- "full": {
1390
- "description": "Allow full reference links and images",
1391
- "type": "boolean",
1392
- "default": true
1393
- },
1394
- "collapsed": {
1395
- "description": "Allow collapsed reference links and images",
1396
- "type": "boolean",
1397
- "default": true
1398
- },
1399
- "shortcut": {
1400
- "description": "Allow shortcut reference links and images",
1401
- "type": "boolean",
1402
- "default": true
1403
- },
1404
- "url_inline": {
1405
- "description": "Allow URLs as inline links",
1406
- "type": "boolean",
1407
- "default": true
1408
- }
1409
- },
1410
- "additionalProperties": false
1411
- },
1412
- "MD055": {
1413
- "description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md055.md",
1414
- "type": ["boolean", "object"],
1415
- "default": true,
1416
- "properties": {
1417
- "style": {
1418
- "description": "Table pipe style",
1419
- "type": "string",
1420
- "enum": [
1421
- "consistent",
1422
- "leading_only",
1423
- "trailing_only",
1424
- "leading_and_trailing",
1425
- "no_leading_or_trailing"
1426
- ],
1427
- "default": "consistent"
1428
- }
1429
- },
1430
- "additionalProperties": false
1431
- },
1432
- "table-pipe-style": {
1433
- "description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md055.md",
1434
- "type": ["boolean", "object"],
1435
- "default": true,
1436
- "properties": {
1437
- "style": {
1438
- "description": "Table pipe style",
1439
- "type": "string",
1440
- "enum": [
1441
- "consistent",
1442
- "leading_only",
1443
- "trailing_only",
1444
- "leading_and_trailing",
1445
- "no_leading_or_trailing"
1446
- ],
1447
- "default": "consistent"
1448
- }
1449
- },
1450
- "additionalProperties": false
1451
- },
1452
- "MD056": {
1453
- "description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md056.md",
1454
- "type": "boolean",
1455
- "default": true
1456
- },
1457
- "table-column-count": {
1458
- "description": "MD056/table-column-count : Table column count : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md056.md",
1459
- "type": "boolean",
1460
- "default": true
1461
- },
1462
- "MD058": {
1463
- "description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md058.md",
1464
- "type": "boolean",
1465
- "default": true
1466
- },
1467
- "blanks-around-tables": {
1468
- "description": "MD058/blanks-around-tables : Tables should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md058.md",
1469
- "type": "boolean",
1470
- "default": true
1471
- },
1472
- "headings": {
1473
- "description": "headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
1474
- "type": "boolean",
1475
- "default": true
1476
- },
1477
- "bullet": {
1478
- "description": "bullet : MD004, MD005, MD007, MD032",
1479
- "type": "boolean",
1480
- "default": true
1481
- },
1482
- "ul": {
1483
- "description": "ul : MD004, MD005, MD007, MD030, MD032",
1484
- "type": "boolean",
1485
- "default": true
1486
- },
1487
- "indentation": {
1488
- "description": "indentation : MD005, MD007, MD027",
1489
- "type": "boolean",
1490
- "default": true
1491
- },
1492
- "whitespace": {
1493
- "description": "whitespace : MD009, MD010, MD012, MD027, MD028, MD030, MD037, MD038, MD039",
1494
- "type": "boolean",
1495
- "default": true
1496
- },
1497
- "hard_tab": {
1498
- "description": "hard_tab : MD010",
1499
- "type": "boolean",
1500
- "default": true
1501
- },
1502
- "links": {
1503
- "description": "links : MD011, MD034, MD039, MD042, MD051, MD052, MD053, MD054",
1504
- "type": "boolean",
1505
- "default": true
1506
- },
1507
- "blank_lines": {
1508
- "description": "blank_lines : MD012, MD022, MD031, MD032, MD047",
1509
- "type": "boolean",
1510
- "default": true
1511
- },
1512
- "line_length": {
1513
- "description": "line_length : MD013",
1514
- "type": "boolean",
1515
- "default": true
1516
- },
1517
- "code": {
1518
- "description": "code : MD014, MD031, MD038, MD040, MD046, MD048",
1519
- "type": "boolean",
1520
- "default": true
1521
- },
1522
- "atx": {
1523
- "description": "atx : MD018, MD019",
1524
- "type": "boolean",
1525
- "default": true
1526
- },
1527
- "spaces": {
1528
- "description": "spaces : MD018, MD019, MD020, MD021, MD023",
1529
- "type": "boolean",
1530
- "default": true
1531
- },
1532
- "atx_closed": {
1533
- "description": "atx_closed : MD020, MD021",
1534
- "type": "boolean",
1535
- "default": true
1536
- },
1537
- "blockquote": {
1538
- "description": "blockquote : MD027, MD028",
1539
- "type": "boolean",
1540
- "default": true
1541
- },
1542
- "ol": {
1543
- "description": "ol : MD029, MD030, MD032",
1544
- "type": "boolean",
1545
- "default": true
1546
- },
1547
- "html": {
1548
- "description": "html : MD033",
1549
- "type": "boolean",
1550
- "default": true
1551
- },
1552
- "url": {
1553
- "description": "url : MD034",
1554
- "type": "boolean",
1555
- "default": true
1556
- },
1557
- "hr": {
1558
- "description": "hr : MD035",
1559
- "type": "boolean",
1560
- "default": true
1561
- },
1562
- "emphasis": {
1563
- "description": "emphasis : MD036, MD037, MD049, MD050",
1564
- "type": "boolean",
1565
- "default": true
1566
- },
1567
- "language": {
1568
- "description": "language : MD040",
1569
- "type": "boolean",
1570
- "default": true
1571
- },
1572
- "spelling": {
1573
- "description": "spelling : MD044",
1574
- "type": "boolean",
1575
- "default": true
1576
- },
1577
- "accessibility": {
1578
- "description": "accessibility : MD045",
1579
- "type": "boolean",
1580
- "default": true
1581
- },
1582
- "images": {
1583
- "description": "images : MD045, MD052, MD053, MD054",
1584
- "type": "boolean",
1585
- "default": true
1586
- },
1587
- "table": {
1588
- "description": "table : MD055, MD056, MD058",
1589
- "type": "boolean",
1590
- "default": true
1591
- }
1592
- },
1593
- "additionalProperties": {
1594
- "type": ["boolean", "object"]
1595
- }
1596
- }