@storm-software/markdownlint 0.13.2 → 0.13.6
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.
- package/README.md +1 -1
- package/dist/index.js +37 -37
- package/dist/index.mjs +37 -37
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/dist/index.js
CHANGED
|
@@ -13,39 +13,39 @@ var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
|
|
|
13
13
|
|
|
14
14
|
// src/markdownlint.ts
|
|
15
15
|
var markdownlintConfig = {
|
|
16
|
-
|
|
16
|
+
$schema: "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/schema/markdownlint-config-schema.json",
|
|
17
17
|
"header-increment": true,
|
|
18
18
|
"first-header-h1": false,
|
|
19
19
|
"heading-style": {
|
|
20
|
-
|
|
20
|
+
style: "atx"
|
|
21
21
|
},
|
|
22
22
|
"ul-style": {
|
|
23
|
-
|
|
23
|
+
style: "dash"
|
|
24
24
|
},
|
|
25
25
|
"list-indent": true,
|
|
26
26
|
"ul-start-left": false,
|
|
27
27
|
"ul-indent": {
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
indent: 2,
|
|
29
|
+
start_indented: true
|
|
30
30
|
},
|
|
31
31
|
"no-trailing-spaces": {
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
br_spaces: 0,
|
|
33
|
+
list_item_empty_lines: false
|
|
34
34
|
},
|
|
35
35
|
"no-hard-tabs": {
|
|
36
|
-
|
|
36
|
+
code_blocks: true
|
|
37
37
|
},
|
|
38
38
|
"no-reversed-links": true,
|
|
39
39
|
"no-multiple-blanks": {
|
|
40
|
-
|
|
40
|
+
maximum: 1
|
|
41
41
|
},
|
|
42
42
|
"line-length": {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
43
|
+
tables: false,
|
|
44
|
+
code_blocks: true,
|
|
45
|
+
headings: true,
|
|
46
|
+
line_length: 80,
|
|
47
|
+
heading_line_length: 80,
|
|
48
|
+
code_block_line_length: 80
|
|
49
49
|
},
|
|
50
50
|
"commands-show-output": true,
|
|
51
51
|
"no-missing-space-atx": true,
|
|
@@ -57,25 +57,25 @@ var markdownlintConfig = {
|
|
|
57
57
|
"no-duplicate-heading": true,
|
|
58
58
|
"single-h1": false,
|
|
59
59
|
"no-trailing-punctuation": {
|
|
60
|
-
|
|
60
|
+
punctuation: ".,:!?"
|
|
61
61
|
},
|
|
62
62
|
"no-multiple-space-blockquote": true,
|
|
63
63
|
"no-blanks-blockquote": false,
|
|
64
64
|
"ol-prefix": {
|
|
65
|
-
|
|
65
|
+
style: "one"
|
|
66
66
|
},
|
|
67
67
|
"list-marker-space": {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
ul_single: 1,
|
|
69
|
+
ol_single: 1,
|
|
70
|
+
ul_multi: 1,
|
|
71
|
+
ol_multi: 1
|
|
72
72
|
},
|
|
73
73
|
"no-empty-code-blocks": true,
|
|
74
74
|
"no-empty-lists": true,
|
|
75
|
-
"no-inline-html":
|
|
75
|
+
"no-inline-html": false,
|
|
76
76
|
"no-bare-urls": true,
|
|
77
77
|
"hr-style": {
|
|
78
|
-
|
|
78
|
+
style: "---"
|
|
79
79
|
},
|
|
80
80
|
"no-emphasis-as-header": false,
|
|
81
81
|
"no-space-in-emphasis": true,
|
|
@@ -88,42 +88,42 @@ var markdownlintConfig = {
|
|
|
88
88
|
"proper-names": false,
|
|
89
89
|
"no-alt-text": false,
|
|
90
90
|
"code-block-style": {
|
|
91
|
-
|
|
91
|
+
style: "fenced"
|
|
92
92
|
},
|
|
93
93
|
"single-trailing-newline": true,
|
|
94
94
|
"code-fence-style": {
|
|
95
|
-
|
|
95
|
+
style: "backtick"
|
|
96
96
|
},
|
|
97
97
|
"emphasis-style": {
|
|
98
|
-
|
|
98
|
+
style: "consistent"
|
|
99
99
|
},
|
|
100
100
|
"strong-style": {
|
|
101
|
-
|
|
101
|
+
style: "asterisk"
|
|
102
102
|
},
|
|
103
103
|
"link-fragments": true,
|
|
104
104
|
"reference-links-images": {
|
|
105
|
-
|
|
105
|
+
shortcut_syntax: false
|
|
106
106
|
},
|
|
107
107
|
"link-image-reference-definitions": {
|
|
108
|
-
|
|
108
|
+
ignored_definitions: [
|
|
109
109
|
"//"
|
|
110
110
|
]
|
|
111
111
|
},
|
|
112
112
|
"link-image-style": {
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
113
|
+
autolink: true,
|
|
114
|
+
collapsed: true,
|
|
115
|
+
full: true,
|
|
116
|
+
inline: true,
|
|
117
|
+
shortcut: true,
|
|
118
|
+
url_inline: true
|
|
119
119
|
},
|
|
120
120
|
"table-pipe-style": {
|
|
121
|
-
|
|
121
|
+
style: "consistent"
|
|
122
122
|
},
|
|
123
123
|
"table-column-count": true,
|
|
124
124
|
"blanks-around-tables": true,
|
|
125
125
|
"spaces-around-links": {
|
|
126
|
-
|
|
126
|
+
both: true
|
|
127
127
|
}
|
|
128
128
|
};
|
|
129
129
|
|
package/dist/index.mjs
CHANGED
|
@@ -13,39 +13,39 @@ import defu from "defu";
|
|
|
13
13
|
|
|
14
14
|
// src/markdownlint.ts
|
|
15
15
|
var markdownlintConfig = {
|
|
16
|
-
|
|
16
|
+
$schema: "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/schema/markdownlint-config-schema.json",
|
|
17
17
|
"header-increment": true,
|
|
18
18
|
"first-header-h1": false,
|
|
19
19
|
"heading-style": {
|
|
20
|
-
|
|
20
|
+
style: "atx"
|
|
21
21
|
},
|
|
22
22
|
"ul-style": {
|
|
23
|
-
|
|
23
|
+
style: "dash"
|
|
24
24
|
},
|
|
25
25
|
"list-indent": true,
|
|
26
26
|
"ul-start-left": false,
|
|
27
27
|
"ul-indent": {
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
indent: 2,
|
|
29
|
+
start_indented: true
|
|
30
30
|
},
|
|
31
31
|
"no-trailing-spaces": {
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
br_spaces: 0,
|
|
33
|
+
list_item_empty_lines: false
|
|
34
34
|
},
|
|
35
35
|
"no-hard-tabs": {
|
|
36
|
-
|
|
36
|
+
code_blocks: true
|
|
37
37
|
},
|
|
38
38
|
"no-reversed-links": true,
|
|
39
39
|
"no-multiple-blanks": {
|
|
40
|
-
|
|
40
|
+
maximum: 1
|
|
41
41
|
},
|
|
42
42
|
"line-length": {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
43
|
+
tables: false,
|
|
44
|
+
code_blocks: true,
|
|
45
|
+
headings: true,
|
|
46
|
+
line_length: 80,
|
|
47
|
+
heading_line_length: 80,
|
|
48
|
+
code_block_line_length: 80
|
|
49
49
|
},
|
|
50
50
|
"commands-show-output": true,
|
|
51
51
|
"no-missing-space-atx": true,
|
|
@@ -57,25 +57,25 @@ var markdownlintConfig = {
|
|
|
57
57
|
"no-duplicate-heading": true,
|
|
58
58
|
"single-h1": false,
|
|
59
59
|
"no-trailing-punctuation": {
|
|
60
|
-
|
|
60
|
+
punctuation: ".,:!?"
|
|
61
61
|
},
|
|
62
62
|
"no-multiple-space-blockquote": true,
|
|
63
63
|
"no-blanks-blockquote": false,
|
|
64
64
|
"ol-prefix": {
|
|
65
|
-
|
|
65
|
+
style: "one"
|
|
66
66
|
},
|
|
67
67
|
"list-marker-space": {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
ul_single: 1,
|
|
69
|
+
ol_single: 1,
|
|
70
|
+
ul_multi: 1,
|
|
71
|
+
ol_multi: 1
|
|
72
72
|
},
|
|
73
73
|
"no-empty-code-blocks": true,
|
|
74
74
|
"no-empty-lists": true,
|
|
75
|
-
"no-inline-html":
|
|
75
|
+
"no-inline-html": false,
|
|
76
76
|
"no-bare-urls": true,
|
|
77
77
|
"hr-style": {
|
|
78
|
-
|
|
78
|
+
style: "---"
|
|
79
79
|
},
|
|
80
80
|
"no-emphasis-as-header": false,
|
|
81
81
|
"no-space-in-emphasis": true,
|
|
@@ -88,42 +88,42 @@ var markdownlintConfig = {
|
|
|
88
88
|
"proper-names": false,
|
|
89
89
|
"no-alt-text": false,
|
|
90
90
|
"code-block-style": {
|
|
91
|
-
|
|
91
|
+
style: "fenced"
|
|
92
92
|
},
|
|
93
93
|
"single-trailing-newline": true,
|
|
94
94
|
"code-fence-style": {
|
|
95
|
-
|
|
95
|
+
style: "backtick"
|
|
96
96
|
},
|
|
97
97
|
"emphasis-style": {
|
|
98
|
-
|
|
98
|
+
style: "consistent"
|
|
99
99
|
},
|
|
100
100
|
"strong-style": {
|
|
101
|
-
|
|
101
|
+
style: "asterisk"
|
|
102
102
|
},
|
|
103
103
|
"link-fragments": true,
|
|
104
104
|
"reference-links-images": {
|
|
105
|
-
|
|
105
|
+
shortcut_syntax: false
|
|
106
106
|
},
|
|
107
107
|
"link-image-reference-definitions": {
|
|
108
|
-
|
|
108
|
+
ignored_definitions: [
|
|
109
109
|
"//"
|
|
110
110
|
]
|
|
111
111
|
},
|
|
112
112
|
"link-image-style": {
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
113
|
+
autolink: true,
|
|
114
|
+
collapsed: true,
|
|
115
|
+
full: true,
|
|
116
|
+
inline: true,
|
|
117
|
+
shortcut: true,
|
|
118
|
+
url_inline: true
|
|
119
119
|
},
|
|
120
120
|
"table-pipe-style": {
|
|
121
|
-
|
|
121
|
+
style: "consistent"
|
|
122
122
|
},
|
|
123
123
|
"table-column-count": true,
|
|
124
124
|
"blanks-around-tables": true,
|
|
125
125
|
"spaces-around-links": {
|
|
126
|
-
|
|
126
|
+
both: true
|
|
127
127
|
}
|
|
128
128
|
};
|
|
129
129
|
|