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