@alexlit/lint-kit 107.1.0 → 107.2.1

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.
Files changed (187) hide show
  1. package/package.json +1 -1
  2. package/packages/config-eslint/package.json +4 -4
  3. package/packages/config-markdownlint/node_modules/markdown-it/LICENSE +22 -0
  4. package/packages/config-markdownlint/node_modules/markdown-it/README.md +309 -0
  5. package/packages/config-markdownlint/node_modules/markdown-it/bin/markdown-it.js +117 -0
  6. package/packages/config-markdownlint/node_modules/markdown-it/dist/markdown-it.js +8441 -0
  7. package/packages/config-markdownlint/node_modules/markdown-it/dist/markdown-it.min.js +3 -0
  8. package/packages/config-markdownlint/node_modules/markdown-it/index.js +4 -0
  9. package/packages/config-markdownlint/node_modules/markdown-it/lib/common/entities.js +6 -0
  10. package/packages/config-markdownlint/node_modules/markdown-it/lib/common/html_blocks.js +70 -0
  11. package/packages/config-markdownlint/node_modules/markdown-it/lib/common/html_re.js +28 -0
  12. package/packages/config-markdownlint/node_modules/markdown-it/lib/common/utils.js +317 -0
  13. package/packages/config-markdownlint/node_modules/markdown-it/lib/helpers/index.js +7 -0
  14. package/packages/config-markdownlint/node_modules/markdown-it/lib/helpers/parse_link_destination.js +80 -0
  15. package/packages/config-markdownlint/node_modules/markdown-it/lib/helpers/parse_link_label.js +48 -0
  16. package/packages/config-markdownlint/node_modules/markdown-it/lib/helpers/parse_link_title.js +55 -0
  17. package/packages/config-markdownlint/node_modules/markdown-it/lib/index.js +582 -0
  18. package/packages/config-markdownlint/node_modules/markdown-it/lib/parser_block.js +131 -0
  19. package/packages/config-markdownlint/node_modules/markdown-it/lib/parser_core.js +61 -0
  20. package/packages/config-markdownlint/node_modules/markdown-it/lib/parser_inline.js +192 -0
  21. package/packages/config-markdownlint/node_modules/markdown-it/lib/presets/commonmark.js +81 -0
  22. package/packages/config-markdownlint/node_modules/markdown-it/lib/presets/default.js +41 -0
  23. package/packages/config-markdownlint/node_modules/markdown-it/lib/presets/zero.js +63 -0
  24. package/packages/config-markdownlint/node_modules/markdown-it/lib/renderer.js +341 -0
  25. package/packages/config-markdownlint/node_modules/markdown-it/lib/ruler.js +352 -0
  26. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/blockquote.js +226 -0
  27. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/code.js +34 -0
  28. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/fence.js +98 -0
  29. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/heading.js +55 -0
  30. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/hr.js +45 -0
  31. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/html_block.js +74 -0
  32. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/lheading.js +83 -0
  33. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/list.js +362 -0
  34. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/paragraph.js +51 -0
  35. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/reference.js +198 -0
  36. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/state_block.js +231 -0
  37. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_block/table.js +221 -0
  38. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_core/block.js +16 -0
  39. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_core/inline.js +13 -0
  40. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_core/linkify.js +142 -0
  41. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_core/normalize.js +21 -0
  42. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_core/replacements.js +105 -0
  43. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_core/smartquotes.js +201 -0
  44. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_core/state_core.js +20 -0
  45. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_core/text_join.js +45 -0
  46. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/autolink.js +76 -0
  47. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/backticks.js +63 -0
  48. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/balance_pairs.js +130 -0
  49. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/emphasis.js +130 -0
  50. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/entity.js +55 -0
  51. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/escape.js +71 -0
  52. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/fragments_join.js +41 -0
  53. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/html_inline.js +58 -0
  54. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/image.js +152 -0
  55. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/link.js +150 -0
  56. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/linkify.js +62 -0
  57. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/newline.js +46 -0
  58. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/state_inline.js +158 -0
  59. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/strikethrough.js +130 -0
  60. package/packages/config-markdownlint/node_modules/markdown-it/lib/rules_inline/text.js +89 -0
  61. package/packages/config-markdownlint/node_modules/markdown-it/lib/token.js +201 -0
  62. package/packages/config-markdownlint/node_modules/markdown-it/package.json +87 -0
  63. package/packages/config-markdownlint/node_modules/markdownlint/CHANGELOG.md +428 -0
  64. package/packages/config-markdownlint/node_modules/markdownlint/CONTRIBUTING.md +92 -0
  65. package/packages/config-markdownlint/node_modules/markdownlint/LICENSE +21 -0
  66. package/packages/config-markdownlint/node_modules/markdownlint/README.md +1026 -0
  67. package/packages/config-markdownlint/node_modules/markdownlint/demo/markdownlint-browser.js +6814 -0
  68. package/packages/config-markdownlint/node_modules/markdownlint/doc/CustomRules.md +376 -0
  69. package/packages/config-markdownlint/node_modules/markdownlint/doc/Prettier.md +27 -0
  70. package/packages/config-markdownlint/node_modules/markdownlint/doc/ReleaseProcess.md +20 -0
  71. package/packages/config-markdownlint/node_modules/markdownlint/doc/Rules.md +2335 -0
  72. package/packages/config-markdownlint/node_modules/markdownlint/doc/md001.md +37 -0
  73. package/packages/config-markdownlint/node_modules/markdownlint/doc/md003.md +59 -0
  74. package/packages/config-markdownlint/node_modules/markdownlint/doc/md004.md +49 -0
  75. package/packages/config-markdownlint/node_modules/markdownlint/doc/md005.md +53 -0
  76. package/packages/config-markdownlint/node_modules/markdownlint/doc/md007.md +52 -0
  77. package/packages/config-markdownlint/node_modules/markdownlint/doc/md009.md +51 -0
  78. package/packages/config-markdownlint/node_modules/markdownlint/doc/md010.md +56 -0
  79. package/packages/config-markdownlint/node_modules/markdownlint/doc/md011.md +30 -0
  80. package/packages/config-markdownlint/node_modules/markdownlint/doc/md012.md +38 -0
  81. package/packages/config-markdownlint/node_modules/markdownlint/doc/md013.md +57 -0
  82. package/packages/config-markdownlint/node_modules/markdownlint/doc/md014.md +54 -0
  83. package/packages/config-markdownlint/node_modules/markdownlint/doc/md018.md +27 -0
  84. package/packages/config-markdownlint/node_modules/markdownlint/doc/md019.md +28 -0
  85. package/packages/config-markdownlint/node_modules/markdownlint/doc/md020.md +29 -0
  86. package/packages/config-markdownlint/node_modules/markdownlint/doc/md021.md +31 -0
  87. package/packages/config-markdownlint/node_modules/markdownlint/doc/md022.md +52 -0
  88. package/packages/config-markdownlint/node_modules/markdownlint/doc/md023.md +33 -0
  89. package/packages/config-markdownlint/node_modules/markdownlint/doc/md024.md +47 -0
  90. package/packages/config-markdownlint/node_modules/markdownlint/doc/md025.md +49 -0
  91. package/packages/config-markdownlint/node_modules/markdownlint/doc/md026.md +40 -0
  92. package/packages/config-markdownlint/node_modules/markdownlint/doc/md027.md +24 -0
  93. package/packages/config-markdownlint/node_modules/markdownlint/doc/md028.md +40 -0
  94. package/packages/config-markdownlint/node_modules/markdownlint/doc/md029.md +98 -0
  95. package/packages/config-markdownlint/node_modules/markdownlint/doc/md030.md +82 -0
  96. package/packages/config-markdownlint/node_modules/markdownlint/doc/md031.md +50 -0
  97. package/packages/config-markdownlint/node_modules/markdownlint/doc/md032.md +55 -0
  98. package/packages/config-markdownlint/node_modules/markdownlint/doc/md033.md +27 -0
  99. package/packages/config-markdownlint/node_modules/markdownlint/doc/md034.md +50 -0
  100. package/packages/config-markdownlint/node_modules/markdownlint/doc/md035.md +42 -0
  101. package/packages/config-markdownlint/node_modules/markdownlint/doc/md036.md +45 -0
  102. package/packages/config-markdownlint/node_modules/markdownlint/doc/md037.md +37 -0
  103. package/packages/config-markdownlint/node_modules/markdownlint/doc/md038.md +40 -0
  104. package/packages/config-markdownlint/node_modules/markdownlint/doc/md039.md +21 -0
  105. package/packages/config-markdownlint/node_modules/markdownlint/doc/md040.md +52 -0
  106. package/packages/config-markdownlint/node_modules/markdownlint/doc/md041.md +49 -0
  107. package/packages/config-markdownlint/node_modules/markdownlint/doc/md042.md +32 -0
  108. package/packages/config-markdownlint/node_modules/markdownlint/doc/md043.md +69 -0
  109. package/packages/config-markdownlint/node_modules/markdownlint/doc/md044.md +35 -0
  110. package/packages/config-markdownlint/node_modules/markdownlint/doc/md045.md +40 -0
  111. package/packages/config-markdownlint/node_modules/markdownlint/doc/md046.md +40 -0
  112. package/packages/config-markdownlint/node_modules/markdownlint/doc/md047.md +34 -0
  113. package/packages/config-markdownlint/node_modules/markdownlint/doc/md048.md +41 -0
  114. package/packages/config-markdownlint/node_modules/markdownlint/doc/md049.md +32 -0
  115. package/packages/config-markdownlint/node_modules/markdownlint/doc/md050.md +32 -0
  116. package/packages/config-markdownlint/node_modules/markdownlint/doc/md051.md +61 -0
  117. package/packages/config-markdownlint/node_modules/markdownlint/doc/md052.md +40 -0
  118. package/packages/config-markdownlint/node_modules/markdownlint/doc/md053.md +38 -0
  119. package/packages/config-markdownlint/node_modules/markdownlint/doc/md054.md +100 -0
  120. package/packages/config-markdownlint/node_modules/markdownlint/helpers/LICENSE +21 -0
  121. package/packages/config-markdownlint/node_modules/markdownlint/helpers/README.md +70 -0
  122. package/packages/config-markdownlint/node_modules/markdownlint/helpers/helpers.js +1025 -0
  123. package/packages/config-markdownlint/node_modules/markdownlint/helpers/micromark.cjs +426 -0
  124. package/packages/config-markdownlint/node_modules/markdownlint/helpers/package.json +26 -0
  125. package/packages/config-markdownlint/node_modules/markdownlint/helpers/shared.js +10 -0
  126. package/packages/config-markdownlint/node_modules/markdownlint/lib/cache.js +21 -0
  127. package/packages/config-markdownlint/node_modules/markdownlint/lib/configuration.d.ts +1152 -0
  128. package/packages/config-markdownlint/node_modules/markdownlint/lib/constants.js +14 -0
  129. package/packages/config-markdownlint/node_modules/markdownlint/lib/markdownlint.d.ts +406 -0
  130. package/packages/config-markdownlint/node_modules/markdownlint/lib/markdownlint.js +1476 -0
  131. package/packages/config-markdownlint/node_modules/markdownlint/lib/md001.js +22 -0
  132. package/packages/config-markdownlint/node_modules/markdownlint/lib/md003.js +42 -0
  133. package/packages/config-markdownlint/node_modules/markdownlint/lib/md004.js +76 -0
  134. package/packages/config-markdownlint/node_modules/markdownlint/lib/md005.js +73 -0
  135. package/packages/config-markdownlint/node_modules/markdownlint/lib/md007.js +86 -0
  136. package/packages/config-markdownlint/node_modules/markdownlint/lib/md009.js +86 -0
  137. package/packages/config-markdownlint/node_modules/markdownlint/lib/md010.js +60 -0
  138. package/packages/config-markdownlint/node_modules/markdownlint/lib/md011.js +46 -0
  139. package/packages/config-markdownlint/node_modules/markdownlint/lib/md012.js +32 -0
  140. package/packages/config-markdownlint/node_modules/markdownlint/lib/md013.js +96 -0
  141. package/packages/config-markdownlint/node_modules/markdownlint/lib/md014.js +53 -0
  142. package/packages/config-markdownlint/node_modules/markdownlint/lib/md018.js +34 -0
  143. package/packages/config-markdownlint/node_modules/markdownlint/lib/md019.js +39 -0
  144. package/packages/config-markdownlint/node_modules/markdownlint/lib/md020.js +62 -0
  145. package/packages/config-markdownlint/node_modules/markdownlint/lib/md021.js +62 -0
  146. package/packages/config-markdownlint/node_modules/markdownlint/lib/md022.js +108 -0
  147. package/packages/config-markdownlint/node_modules/markdownlint/lib/md023.js +38 -0
  148. package/packages/config-markdownlint/node_modules/markdownlint/lib/md024.js +38 -0
  149. package/packages/config-markdownlint/node_modules/markdownlint/lib/md025.js +32 -0
  150. package/packages/config-markdownlint/node_modules/markdownlint/lib/md026.js +50 -0
  151. package/packages/config-markdownlint/node_modules/markdownlint/lib/md027.js +56 -0
  152. package/packages/config-markdownlint/node_modules/markdownlint/lib/md028.js +30 -0
  153. package/packages/config-markdownlint/node_modules/markdownlint/lib/md029.js +67 -0
  154. package/packages/config-markdownlint/node_modules/markdownlint/lib/md030.js +61 -0
  155. package/packages/config-markdownlint/node_modules/markdownlint/lib/md031.js +40 -0
  156. package/packages/config-markdownlint/node_modules/markdownlint/lib/md032.js +78 -0
  157. package/packages/config-markdownlint/node_modules/markdownlint/lib/md033.js +39 -0
  158. package/packages/config-markdownlint/node_modules/markdownlint/lib/md034.js +79 -0
  159. package/packages/config-markdownlint/node_modules/markdownlint/lib/md035.js +24 -0
  160. package/packages/config-markdownlint/node_modules/markdownlint/lib/md036.js +56 -0
  161. package/packages/config-markdownlint/node_modules/markdownlint/lib/md037.js +91 -0
  162. package/packages/config-markdownlint/node_modules/markdownlint/lib/md038.js +97 -0
  163. package/packages/config-markdownlint/node_modules/markdownlint/lib/md039.js +67 -0
  164. package/packages/config-markdownlint/node_modules/markdownlint/lib/md040.js +37 -0
  165. package/packages/config-markdownlint/node_modules/markdownlint/lib/md041.js +42 -0
  166. package/packages/config-markdownlint/node_modules/markdownlint/lib/md042.js +49 -0
  167. package/packages/config-markdownlint/node_modules/markdownlint/lib/md043.js +64 -0
  168. package/packages/config-markdownlint/node_modules/markdownlint/lib/md044.js +107 -0
  169. package/packages/config-markdownlint/node_modules/markdownlint/lib/md045.js +60 -0
  170. package/packages/config-markdownlint/node_modules/markdownlint/lib/md046.js +33 -0
  171. package/packages/config-markdownlint/node_modules/markdownlint/lib/md047.js +28 -0
  172. package/packages/config-markdownlint/node_modules/markdownlint/lib/md048.js +30 -0
  173. package/packages/config-markdownlint/node_modules/markdownlint/lib/md049-md050.js +89 -0
  174. package/packages/config-markdownlint/node_modules/markdownlint/lib/md051.js +172 -0
  175. package/packages/config-markdownlint/node_modules/markdownlint/lib/md052.js +39 -0
  176. package/packages/config-markdownlint/node_modules/markdownlint/lib/md053.js +59 -0
  177. package/packages/config-markdownlint/node_modules/markdownlint/lib/md054.js +125 -0
  178. package/packages/config-markdownlint/node_modules/markdownlint/lib/rules.js +65 -0
  179. package/packages/config-markdownlint/node_modules/markdownlint/package.json +109 -0
  180. package/packages/config-markdownlint/node_modules/markdownlint/schema/.markdownlint.jsonc +297 -0
  181. package/packages/config-markdownlint/node_modules/markdownlint/schema/.markdownlint.yaml +266 -0
  182. package/packages/config-markdownlint/node_modules/markdownlint/schema/markdownlint-config-schema.json +1762 -0
  183. package/packages/config-markdownlint/node_modules/markdownlint/style/all.json +5 -0
  184. package/packages/config-markdownlint/node_modules/markdownlint/style/cirosantilli.json +22 -0
  185. package/packages/config-markdownlint/node_modules/markdownlint/style/prettier.json +26 -0
  186. package/packages/config-markdownlint/node_modules/markdownlint/style/relaxed.json +12 -0
  187. package/packages/config-markdownlint/package.json +3 -3
@@ -0,0 +1,1152 @@
1
+ /* eslint-disable */
2
+ /**
3
+ * This file was automatically generated by json-schema-to-typescript.
4
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
+ * and run json-schema-to-typescript to regenerate this file.
6
+ */
7
+
8
+ export interface Configuration {
9
+ /**
10
+ * Default state for all rules
11
+ */
12
+ default?: boolean;
13
+ /**
14
+ * Path to configuration file to extend
15
+ */
16
+ extends?: string | null;
17
+ /**
18
+ * JSON Schema URI (used by some editors)
19
+ */
20
+ $schema?: string;
21
+ /**
22
+ * 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
23
+ */
24
+ MD001?: boolean;
25
+ /**
26
+ * 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
27
+ */
28
+ "heading-increment"?: boolean;
29
+ /**
30
+ * MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md003.md
31
+ */
32
+ MD003?:
33
+ | boolean
34
+ | {
35
+ /**
36
+ * Heading style
37
+ */
38
+ style?: "consistent" | "atx" | "atx_closed" | "setext" | "setext_with_atx" | "setext_with_atx_closed";
39
+ };
40
+ /**
41
+ * MD003/heading-style : Heading style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md003.md
42
+ */
43
+ "heading-style"?:
44
+ | boolean
45
+ | {
46
+ /**
47
+ * Heading style
48
+ */
49
+ style?: "consistent" | "atx" | "atx_closed" | "setext" | "setext_with_atx" | "setext_with_atx_closed";
50
+ };
51
+ /**
52
+ * MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md004.md
53
+ */
54
+ MD004?:
55
+ | boolean
56
+ | {
57
+ /**
58
+ * List style
59
+ */
60
+ style?: "consistent" | "asterisk" | "plus" | "dash" | "sublist";
61
+ };
62
+ /**
63
+ * MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md004.md
64
+ */
65
+ "ul-style"?:
66
+ | boolean
67
+ | {
68
+ /**
69
+ * List style
70
+ */
71
+ style?: "consistent" | "asterisk" | "plus" | "dash" | "sublist";
72
+ };
73
+ /**
74
+ * MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md005.md
75
+ */
76
+ MD005?: boolean;
77
+ /**
78
+ * MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md005.md
79
+ */
80
+ "list-indent"?: boolean;
81
+ /**
82
+ * MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md007.md
83
+ */
84
+ MD007?:
85
+ | boolean
86
+ | {
87
+ /**
88
+ * Spaces for indent
89
+ */
90
+ indent?: number;
91
+ /**
92
+ * Whether to indent the first level of the list
93
+ */
94
+ start_indented?: boolean;
95
+ /**
96
+ * Spaces for first level indent (when start_indented is set)
97
+ */
98
+ start_indent?: number;
99
+ };
100
+ /**
101
+ * MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md007.md
102
+ */
103
+ "ul-indent"?:
104
+ | boolean
105
+ | {
106
+ /**
107
+ * Spaces for indent
108
+ */
109
+ indent?: number;
110
+ /**
111
+ * Whether to indent the first level of the list
112
+ */
113
+ start_indented?: boolean;
114
+ /**
115
+ * Spaces for first level indent (when start_indented is set)
116
+ */
117
+ start_indent?: number;
118
+ };
119
+ /**
120
+ * MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md009.md
121
+ */
122
+ MD009?:
123
+ | boolean
124
+ | {
125
+ /**
126
+ * Spaces for line break
127
+ */
128
+ br_spaces?: number;
129
+ /**
130
+ * Allow spaces for empty lines in list items
131
+ */
132
+ list_item_empty_lines?: boolean;
133
+ /**
134
+ * Include unnecessary breaks
135
+ */
136
+ strict?: boolean;
137
+ };
138
+ /**
139
+ * MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md009.md
140
+ */
141
+ "no-trailing-spaces"?:
142
+ | boolean
143
+ | {
144
+ /**
145
+ * Spaces for line break
146
+ */
147
+ br_spaces?: number;
148
+ /**
149
+ * Allow spaces for empty lines in list items
150
+ */
151
+ list_item_empty_lines?: boolean;
152
+ /**
153
+ * Include unnecessary breaks
154
+ */
155
+ strict?: boolean;
156
+ };
157
+ /**
158
+ * MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md010.md
159
+ */
160
+ MD010?:
161
+ | boolean
162
+ | {
163
+ /**
164
+ * Include code blocks
165
+ */
166
+ code_blocks?: boolean;
167
+ /**
168
+ * Fenced code languages to ignore
169
+ */
170
+ ignore_code_languages?: string[];
171
+ /**
172
+ * Number of spaces for each hard tab
173
+ */
174
+ spaces_per_tab?: number;
175
+ };
176
+ /**
177
+ * MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md010.md
178
+ */
179
+ "no-hard-tabs"?:
180
+ | boolean
181
+ | {
182
+ /**
183
+ * Include code blocks
184
+ */
185
+ code_blocks?: boolean;
186
+ /**
187
+ * Fenced code languages to ignore
188
+ */
189
+ ignore_code_languages?: string[];
190
+ /**
191
+ * Number of spaces for each hard tab
192
+ */
193
+ spaces_per_tab?: number;
194
+ };
195
+ /**
196
+ * MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md011.md
197
+ */
198
+ MD011?: boolean;
199
+ /**
200
+ * MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md011.md
201
+ */
202
+ "no-reversed-links"?: boolean;
203
+ /**
204
+ * MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md012.md
205
+ */
206
+ MD012?:
207
+ | boolean
208
+ | {
209
+ /**
210
+ * Consecutive blank lines
211
+ */
212
+ maximum?: number;
213
+ };
214
+ /**
215
+ * MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md012.md
216
+ */
217
+ "no-multiple-blanks"?:
218
+ | boolean
219
+ | {
220
+ /**
221
+ * Consecutive blank lines
222
+ */
223
+ maximum?: number;
224
+ };
225
+ /**
226
+ * MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md013.md
227
+ */
228
+ MD013?:
229
+ | boolean
230
+ | {
231
+ /**
232
+ * Number of characters
233
+ */
234
+ line_length?: number;
235
+ /**
236
+ * Number of characters for headings
237
+ */
238
+ heading_line_length?: number;
239
+ /**
240
+ * Number of characters for code blocks
241
+ */
242
+ code_block_line_length?: number;
243
+ /**
244
+ * Include code blocks
245
+ */
246
+ code_blocks?: boolean;
247
+ /**
248
+ * Include tables
249
+ */
250
+ tables?: boolean;
251
+ /**
252
+ * Include headings
253
+ */
254
+ headings?: boolean;
255
+ /**
256
+ * Strict length checking
257
+ */
258
+ strict?: boolean;
259
+ /**
260
+ * Stern length checking
261
+ */
262
+ stern?: boolean;
263
+ };
264
+ /**
265
+ * MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md013.md
266
+ */
267
+ "line-length"?:
268
+ | boolean
269
+ | {
270
+ /**
271
+ * Number of characters
272
+ */
273
+ line_length?: number;
274
+ /**
275
+ * Number of characters for headings
276
+ */
277
+ heading_line_length?: number;
278
+ /**
279
+ * Number of characters for code blocks
280
+ */
281
+ code_block_line_length?: number;
282
+ /**
283
+ * Include code blocks
284
+ */
285
+ code_blocks?: boolean;
286
+ /**
287
+ * Include tables
288
+ */
289
+ tables?: boolean;
290
+ /**
291
+ * Include headings
292
+ */
293
+ headings?: boolean;
294
+ /**
295
+ * Strict length checking
296
+ */
297
+ strict?: boolean;
298
+ /**
299
+ * Stern length checking
300
+ */
301
+ stern?: boolean;
302
+ };
303
+ /**
304
+ * MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md014.md
305
+ */
306
+ MD014?: boolean;
307
+ /**
308
+ * MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md014.md
309
+ */
310
+ "commands-show-output"?: boolean;
311
+ /**
312
+ * 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
313
+ */
314
+ MD018?: boolean;
315
+ /**
316
+ * 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
317
+ */
318
+ "no-missing-space-atx"?: boolean;
319
+ /**
320
+ * 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
321
+ */
322
+ MD019?: boolean;
323
+ /**
324
+ * 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
325
+ */
326
+ "no-multiple-space-atx"?: boolean;
327
+ /**
328
+ * 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
329
+ */
330
+ MD020?: boolean;
331
+ /**
332
+ * 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
333
+ */
334
+ "no-missing-space-closed-atx"?: boolean;
335
+ /**
336
+ * 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
337
+ */
338
+ MD021?: boolean;
339
+ /**
340
+ * 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
341
+ */
342
+ "no-multiple-space-closed-atx"?: boolean;
343
+ /**
344
+ * MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md022.md
345
+ */
346
+ MD022?:
347
+ | boolean
348
+ | {
349
+ /**
350
+ * Blank lines above heading
351
+ */
352
+ lines_above?: number | number[];
353
+ /**
354
+ * Blank lines below heading
355
+ */
356
+ lines_below?: number | number[];
357
+ };
358
+ /**
359
+ * MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md022.md
360
+ */
361
+ "blanks-around-headings"?:
362
+ | boolean
363
+ | {
364
+ /**
365
+ * Blank lines above heading
366
+ */
367
+ lines_above?: number | number[];
368
+ /**
369
+ * Blank lines below heading
370
+ */
371
+ lines_below?: number | number[];
372
+ };
373
+ /**
374
+ * 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
375
+ */
376
+ MD023?: boolean;
377
+ /**
378
+ * 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
379
+ */
380
+ "heading-start-left"?: boolean;
381
+ /**
382
+ * MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md024.md
383
+ */
384
+ MD024?:
385
+ | boolean
386
+ | {
387
+ /**
388
+ * Only check sibling headings
389
+ */
390
+ allow_different_nesting?: boolean;
391
+ /**
392
+ * Only check sibling headings
393
+ */
394
+ siblings_only?: boolean;
395
+ };
396
+ /**
397
+ * MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md024.md
398
+ */
399
+ "no-duplicate-heading"?:
400
+ | boolean
401
+ | {
402
+ /**
403
+ * Only check sibling headings
404
+ */
405
+ allow_different_nesting?: boolean;
406
+ /**
407
+ * Only check sibling headings
408
+ */
409
+ siblings_only?: boolean;
410
+ };
411
+ /**
412
+ * 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
413
+ */
414
+ MD025?:
415
+ | boolean
416
+ | {
417
+ /**
418
+ * Heading level
419
+ */
420
+ level?: number;
421
+ /**
422
+ * RegExp for matching title in front matter
423
+ */
424
+ front_matter_title?: string;
425
+ };
426
+ /**
427
+ * 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
428
+ */
429
+ "single-title"?:
430
+ | boolean
431
+ | {
432
+ /**
433
+ * Heading level
434
+ */
435
+ level?: number;
436
+ /**
437
+ * RegExp for matching title in front matter
438
+ */
439
+ front_matter_title?: string;
440
+ };
441
+ /**
442
+ * 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
443
+ */
444
+ "single-h1"?:
445
+ | boolean
446
+ | {
447
+ /**
448
+ * Heading level
449
+ */
450
+ level?: number;
451
+ /**
452
+ * RegExp for matching title in front matter
453
+ */
454
+ front_matter_title?: string;
455
+ };
456
+ /**
457
+ * MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md026.md
458
+ */
459
+ MD026?:
460
+ | boolean
461
+ | {
462
+ /**
463
+ * Punctuation characters
464
+ */
465
+ punctuation?: string;
466
+ };
467
+ /**
468
+ * MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md026.md
469
+ */
470
+ "no-trailing-punctuation"?:
471
+ | boolean
472
+ | {
473
+ /**
474
+ * Punctuation characters
475
+ */
476
+ punctuation?: string;
477
+ };
478
+ /**
479
+ * MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md027.md
480
+ */
481
+ MD027?: boolean;
482
+ /**
483
+ * MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md027.md
484
+ */
485
+ "no-multiple-space-blockquote"?: boolean;
486
+ /**
487
+ * MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md028.md
488
+ */
489
+ MD028?: boolean;
490
+ /**
491
+ * MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md028.md
492
+ */
493
+ "no-blanks-blockquote"?: boolean;
494
+ /**
495
+ * MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md029.md
496
+ */
497
+ MD029?:
498
+ | boolean
499
+ | {
500
+ /**
501
+ * List style
502
+ */
503
+ style?: "one" | "ordered" | "one_or_ordered" | "zero";
504
+ };
505
+ /**
506
+ * MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md029.md
507
+ */
508
+ "ol-prefix"?:
509
+ | boolean
510
+ | {
511
+ /**
512
+ * List style
513
+ */
514
+ style?: "one" | "ordered" | "one_or_ordered" | "zero";
515
+ };
516
+ /**
517
+ * MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md030.md
518
+ */
519
+ MD030?:
520
+ | boolean
521
+ | {
522
+ /**
523
+ * Spaces for single-line unordered list items
524
+ */
525
+ ul_single?: number;
526
+ /**
527
+ * Spaces for single-line ordered list items
528
+ */
529
+ ol_single?: number;
530
+ /**
531
+ * Spaces for multi-line unordered list items
532
+ */
533
+ ul_multi?: number;
534
+ /**
535
+ * Spaces for multi-line ordered list items
536
+ */
537
+ ol_multi?: number;
538
+ };
539
+ /**
540
+ * MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md030.md
541
+ */
542
+ "list-marker-space"?:
543
+ | boolean
544
+ | {
545
+ /**
546
+ * Spaces for single-line unordered list items
547
+ */
548
+ ul_single?: number;
549
+ /**
550
+ * Spaces for single-line ordered list items
551
+ */
552
+ ol_single?: number;
553
+ /**
554
+ * Spaces for multi-line unordered list items
555
+ */
556
+ ul_multi?: number;
557
+ /**
558
+ * Spaces for multi-line ordered list items
559
+ */
560
+ ol_multi?: number;
561
+ };
562
+ /**
563
+ * 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
564
+ */
565
+ MD031?:
566
+ | boolean
567
+ | {
568
+ /**
569
+ * Include list items
570
+ */
571
+ list_items?: boolean;
572
+ };
573
+ /**
574
+ * 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
575
+ */
576
+ "blanks-around-fences"?:
577
+ | boolean
578
+ | {
579
+ /**
580
+ * Include list items
581
+ */
582
+ list_items?: boolean;
583
+ };
584
+ /**
585
+ * MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md032.md
586
+ */
587
+ MD032?: boolean;
588
+ /**
589
+ * MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md032.md
590
+ */
591
+ "blanks-around-lists"?: boolean;
592
+ /**
593
+ * MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md033.md
594
+ */
595
+ MD033?:
596
+ | boolean
597
+ | {
598
+ /**
599
+ * Allowed elements
600
+ */
601
+ allowed_elements?: string[];
602
+ };
603
+ /**
604
+ * MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md033.md
605
+ */
606
+ "no-inline-html"?:
607
+ | boolean
608
+ | {
609
+ /**
610
+ * Allowed elements
611
+ */
612
+ allowed_elements?: string[];
613
+ };
614
+ /**
615
+ * MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md034.md
616
+ */
617
+ MD034?: boolean;
618
+ /**
619
+ * MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md034.md
620
+ */
621
+ "no-bare-urls"?: boolean;
622
+ /**
623
+ * MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md035.md
624
+ */
625
+ MD035?:
626
+ | boolean
627
+ | {
628
+ /**
629
+ * Horizontal rule style
630
+ */
631
+ style?: string;
632
+ };
633
+ /**
634
+ * MD035/hr-style : Horizontal rule style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md035.md
635
+ */
636
+ "hr-style"?:
637
+ | boolean
638
+ | {
639
+ /**
640
+ * Horizontal rule style
641
+ */
642
+ style?: string;
643
+ };
644
+ /**
645
+ * MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md036.md
646
+ */
647
+ MD036?:
648
+ | boolean
649
+ | {
650
+ /**
651
+ * Punctuation characters
652
+ */
653
+ punctuation?: string;
654
+ };
655
+ /**
656
+ * MD036/no-emphasis-as-heading : Emphasis used instead of a heading : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md036.md
657
+ */
658
+ "no-emphasis-as-heading"?:
659
+ | boolean
660
+ | {
661
+ /**
662
+ * Punctuation characters
663
+ */
664
+ punctuation?: string;
665
+ };
666
+ /**
667
+ * MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md037.md
668
+ */
669
+ MD037?: boolean;
670
+ /**
671
+ * MD037/no-space-in-emphasis : Spaces inside emphasis markers : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md037.md
672
+ */
673
+ "no-space-in-emphasis"?: boolean;
674
+ /**
675
+ * MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md038.md
676
+ */
677
+ MD038?: boolean;
678
+ /**
679
+ * MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md038.md
680
+ */
681
+ "no-space-in-code"?: boolean;
682
+ /**
683
+ * MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md039.md
684
+ */
685
+ MD039?: boolean;
686
+ /**
687
+ * MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md039.md
688
+ */
689
+ "no-space-in-links"?: boolean;
690
+ /**
691
+ * MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md040.md
692
+ */
693
+ MD040?:
694
+ | boolean
695
+ | {
696
+ /**
697
+ * List of languages
698
+ */
699
+ allowed_languages?: string[];
700
+ /**
701
+ * Require language only
702
+ */
703
+ language_only?: boolean;
704
+ };
705
+ /**
706
+ * MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md040.md
707
+ */
708
+ "fenced-code-language"?:
709
+ | boolean
710
+ | {
711
+ /**
712
+ * List of languages
713
+ */
714
+ allowed_languages?: string[];
715
+ /**
716
+ * Require language only
717
+ */
718
+ language_only?: boolean;
719
+ };
720
+ /**
721
+ * 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
722
+ */
723
+ MD041?:
724
+ | boolean
725
+ | {
726
+ /**
727
+ * Heading level
728
+ */
729
+ level?: number;
730
+ /**
731
+ * RegExp for matching title in front matter
732
+ */
733
+ front_matter_title?: string;
734
+ };
735
+ /**
736
+ * 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
737
+ */
738
+ "first-line-heading"?:
739
+ | boolean
740
+ | {
741
+ /**
742
+ * Heading level
743
+ */
744
+ level?: number;
745
+ /**
746
+ * RegExp for matching title in front matter
747
+ */
748
+ front_matter_title?: string;
749
+ };
750
+ /**
751
+ * 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
752
+ */
753
+ "first-line-h1"?:
754
+ | boolean
755
+ | {
756
+ /**
757
+ * Heading level
758
+ */
759
+ level?: number;
760
+ /**
761
+ * RegExp for matching title in front matter
762
+ */
763
+ front_matter_title?: string;
764
+ };
765
+ /**
766
+ * MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md042.md
767
+ */
768
+ MD042?: boolean;
769
+ /**
770
+ * MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md042.md
771
+ */
772
+ "no-empty-links"?: boolean;
773
+ /**
774
+ * MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md043.md
775
+ */
776
+ MD043?:
777
+ | boolean
778
+ | {
779
+ /**
780
+ * List of headings
781
+ */
782
+ headings?: string[];
783
+ /**
784
+ * Match case of headings
785
+ */
786
+ match_case?: boolean;
787
+ };
788
+ /**
789
+ * MD043/required-headings : Required heading structure : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md043.md
790
+ */
791
+ "required-headings"?:
792
+ | boolean
793
+ | {
794
+ /**
795
+ * List of headings
796
+ */
797
+ headings?: string[];
798
+ /**
799
+ * Match case of headings
800
+ */
801
+ match_case?: boolean;
802
+ };
803
+ /**
804
+ * MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md044.md
805
+ */
806
+ MD044?:
807
+ | boolean
808
+ | {
809
+ /**
810
+ * List of proper names
811
+ */
812
+ names?: string[];
813
+ /**
814
+ * Include code blocks
815
+ */
816
+ code_blocks?: boolean;
817
+ /**
818
+ * Include HTML elements
819
+ */
820
+ html_elements?: boolean;
821
+ };
822
+ /**
823
+ * MD044/proper-names : Proper names should have the correct capitalization : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md044.md
824
+ */
825
+ "proper-names"?:
826
+ | boolean
827
+ | {
828
+ /**
829
+ * List of proper names
830
+ */
831
+ names?: string[];
832
+ /**
833
+ * Include code blocks
834
+ */
835
+ code_blocks?: boolean;
836
+ /**
837
+ * Include HTML elements
838
+ */
839
+ html_elements?: boolean;
840
+ };
841
+ /**
842
+ * MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md045.md
843
+ */
844
+ MD045?: boolean;
845
+ /**
846
+ * MD045/no-alt-text : Images should have alternate text (alt text) : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md045.md
847
+ */
848
+ "no-alt-text"?: boolean;
849
+ /**
850
+ * MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md046.md
851
+ */
852
+ MD046?:
853
+ | boolean
854
+ | {
855
+ /**
856
+ * Block style
857
+ */
858
+ style?: "consistent" | "fenced" | "indented";
859
+ };
860
+ /**
861
+ * MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md046.md
862
+ */
863
+ "code-block-style"?:
864
+ | boolean
865
+ | {
866
+ /**
867
+ * Block style
868
+ */
869
+ style?: "consistent" | "fenced" | "indented";
870
+ };
871
+ /**
872
+ * MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md047.md
873
+ */
874
+ MD047?: boolean;
875
+ /**
876
+ * MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md047.md
877
+ */
878
+ "single-trailing-newline"?: boolean;
879
+ /**
880
+ * MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md048.md
881
+ */
882
+ MD048?:
883
+ | boolean
884
+ | {
885
+ /**
886
+ * Code fence style
887
+ */
888
+ style?: "consistent" | "backtick" | "tilde";
889
+ };
890
+ /**
891
+ * MD048/code-fence-style : Code fence style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md048.md
892
+ */
893
+ "code-fence-style"?:
894
+ | boolean
895
+ | {
896
+ /**
897
+ * Code fence style
898
+ */
899
+ style?: "consistent" | "backtick" | "tilde";
900
+ };
901
+ /**
902
+ * MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md049.md
903
+ */
904
+ MD049?:
905
+ | boolean
906
+ | {
907
+ /**
908
+ * Emphasis style
909
+ */
910
+ style?: "consistent" | "asterisk" | "underscore";
911
+ };
912
+ /**
913
+ * MD049/emphasis-style : Emphasis style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md049.md
914
+ */
915
+ "emphasis-style"?:
916
+ | boolean
917
+ | {
918
+ /**
919
+ * Emphasis style
920
+ */
921
+ style?: "consistent" | "asterisk" | "underscore";
922
+ };
923
+ /**
924
+ * MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md050.md
925
+ */
926
+ MD050?:
927
+ | boolean
928
+ | {
929
+ /**
930
+ * Strong style
931
+ */
932
+ style?: "consistent" | "asterisk" | "underscore";
933
+ };
934
+ /**
935
+ * MD050/strong-style : Strong style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md050.md
936
+ */
937
+ "strong-style"?:
938
+ | boolean
939
+ | {
940
+ /**
941
+ * Strong style
942
+ */
943
+ style?: "consistent" | "asterisk" | "underscore";
944
+ };
945
+ /**
946
+ * MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md051.md
947
+ */
948
+ MD051?: boolean;
949
+ /**
950
+ * MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md051.md
951
+ */
952
+ "link-fragments"?: boolean;
953
+ /**
954
+ * 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
955
+ */
956
+ MD052?:
957
+ | boolean
958
+ | {
959
+ /**
960
+ * Include shortcut syntax
961
+ */
962
+ shortcut_syntax?: boolean;
963
+ };
964
+ /**
965
+ * 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
966
+ */
967
+ "reference-links-images"?:
968
+ | boolean
969
+ | {
970
+ /**
971
+ * Include shortcut syntax
972
+ */
973
+ shortcut_syntax?: boolean;
974
+ };
975
+ /**
976
+ * 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
977
+ */
978
+ MD053?:
979
+ | boolean
980
+ | {
981
+ /**
982
+ * Ignored definitions
983
+ */
984
+ ignored_definitions?: string[];
985
+ };
986
+ /**
987
+ * 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
988
+ */
989
+ "link-image-reference-definitions"?:
990
+ | boolean
991
+ | {
992
+ /**
993
+ * Ignored definitions
994
+ */
995
+ ignored_definitions?: string[];
996
+ };
997
+ /**
998
+ * MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md054.md
999
+ */
1000
+ MD054?:
1001
+ | boolean
1002
+ | {
1003
+ /**
1004
+ * Allow autolinks
1005
+ */
1006
+ autolink?: boolean;
1007
+ /**
1008
+ * Allow inline links and images
1009
+ */
1010
+ inline?: boolean;
1011
+ /**
1012
+ * Allow full reference links and images
1013
+ */
1014
+ full?: boolean;
1015
+ /**
1016
+ * Allow collapsed reference links and images
1017
+ */
1018
+ collapsed?: boolean;
1019
+ /**
1020
+ * Allow shortcut reference links and images
1021
+ */
1022
+ shortcut?: boolean;
1023
+ /**
1024
+ * Allow URLs as inline links
1025
+ */
1026
+ url_inline?: boolean;
1027
+ };
1028
+ /**
1029
+ * MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md054.md
1030
+ */
1031
+ "link-image-style"?:
1032
+ | boolean
1033
+ | {
1034
+ /**
1035
+ * Allow autolinks
1036
+ */
1037
+ autolink?: boolean;
1038
+ /**
1039
+ * Allow inline links and images
1040
+ */
1041
+ inline?: boolean;
1042
+ /**
1043
+ * Allow full reference links and images
1044
+ */
1045
+ full?: boolean;
1046
+ /**
1047
+ * Allow collapsed reference links and images
1048
+ */
1049
+ collapsed?: boolean;
1050
+ /**
1051
+ * Allow shortcut reference links and images
1052
+ */
1053
+ shortcut?: boolean;
1054
+ /**
1055
+ * Allow URLs as inline links
1056
+ */
1057
+ url_inline?: boolean;
1058
+ };
1059
+ /**
1060
+ * headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043
1061
+ */
1062
+ headings?: boolean;
1063
+ /**
1064
+ * bullet : MD004, MD005, MD007, MD032
1065
+ */
1066
+ bullet?: boolean;
1067
+ /**
1068
+ * ul : MD004, MD005, MD007, MD030, MD032
1069
+ */
1070
+ ul?: boolean;
1071
+ /**
1072
+ * indentation : MD005, MD007, MD027
1073
+ */
1074
+ indentation?: boolean;
1075
+ /**
1076
+ * whitespace : MD009, MD010, MD012, MD027, MD028, MD030, MD037, MD038, MD039
1077
+ */
1078
+ whitespace?: boolean;
1079
+ /**
1080
+ * hard_tab : MD010
1081
+ */
1082
+ hard_tab?: boolean;
1083
+ /**
1084
+ * links : MD011, MD034, MD039, MD042, MD051, MD052, MD053, MD054
1085
+ */
1086
+ links?: boolean;
1087
+ /**
1088
+ * blank_lines : MD012, MD022, MD031, MD032, MD047
1089
+ */
1090
+ blank_lines?: boolean;
1091
+ /**
1092
+ * line_length : MD013
1093
+ */
1094
+ line_length?: boolean;
1095
+ /**
1096
+ * code : MD014, MD031, MD038, MD040, MD046, MD048
1097
+ */
1098
+ code?: boolean;
1099
+ /**
1100
+ * atx : MD018, MD019
1101
+ */
1102
+ atx?: boolean;
1103
+ /**
1104
+ * spaces : MD018, MD019, MD020, MD021, MD023
1105
+ */
1106
+ spaces?: boolean;
1107
+ /**
1108
+ * atx_closed : MD020, MD021
1109
+ */
1110
+ atx_closed?: boolean;
1111
+ /**
1112
+ * blockquote : MD027, MD028
1113
+ */
1114
+ blockquote?: boolean;
1115
+ /**
1116
+ * ol : MD029, MD030, MD032
1117
+ */
1118
+ ol?: boolean;
1119
+ /**
1120
+ * html : MD033
1121
+ */
1122
+ html?: boolean;
1123
+ /**
1124
+ * url : MD034
1125
+ */
1126
+ url?: boolean;
1127
+ /**
1128
+ * hr : MD035
1129
+ */
1130
+ hr?: boolean;
1131
+ /**
1132
+ * emphasis : MD036, MD037, MD049, MD050
1133
+ */
1134
+ emphasis?: boolean;
1135
+ /**
1136
+ * language : MD040
1137
+ */
1138
+ language?: boolean;
1139
+ /**
1140
+ * spelling : MD044
1141
+ */
1142
+ spelling?: boolean;
1143
+ /**
1144
+ * accessibility : MD045
1145
+ */
1146
+ accessibility?: boolean;
1147
+ /**
1148
+ * images : MD045, MD052, MD053, MD054
1149
+ */
1150
+ images?: boolean;
1151
+ [k: string]: unknown;
1152
+ }