markdownlint-cli2 0.9.2 → 0.11.0

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