@storm-software/markdownlint 0.16.20 → 0.17.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.
- package/README.md +1 -1
- package/config/base.markdownlint.jsonc +4 -4
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- 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 -->
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"tables": false,
|
|
57
57
|
"code_blocks": true,
|
|
58
58
|
"headings": true,
|
|
59
|
-
"line_length":
|
|
59
|
+
"line_length": 120,
|
|
60
60
|
"heading_line_length": 80,
|
|
61
|
-
"code_block_line_length":
|
|
61
|
+
"code_block_line_length": 150
|
|
62
62
|
},
|
|
63
63
|
|
|
64
64
|
// MD014: Disallow use of dollar signs($) before commands without showing output.
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"header-start-left": true,
|
|
85
85
|
|
|
86
86
|
// MD024: Multiple headers with the same content
|
|
87
|
-
"no-duplicate-heading":
|
|
87
|
+
"no-duplicate-heading": false,
|
|
88
88
|
|
|
89
89
|
// MD025: Disallow multiple top level headers in the same document.
|
|
90
90
|
// Gotta have a matching closing brace at the end.
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
|
|
106
106
|
// MD029: Ordered list item prefix
|
|
107
107
|
"ol-prefix": {
|
|
108
|
-
"style": "
|
|
108
|
+
"style": "one_or_ordered"
|
|
109
109
|
},
|
|
110
110
|
|
|
111
111
|
// MD030: Spaces after list markers
|
package/dist/index.js
CHANGED
|
@@ -54,7 +54,7 @@ var markdownlintConfig = {
|
|
|
54
54
|
"no-multiple-space-closed-atx": true,
|
|
55
55
|
"blanks-around-headers": false,
|
|
56
56
|
"header-start-left": true,
|
|
57
|
-
"no-duplicate-heading":
|
|
57
|
+
"no-duplicate-heading": false,
|
|
58
58
|
"single-h1": false,
|
|
59
59
|
"no-trailing-punctuation": {
|
|
60
60
|
punctuation: ".,:!?"
|
|
@@ -62,7 +62,7 @@ var markdownlintConfig = {
|
|
|
62
62
|
"no-multiple-space-blockquote": true,
|
|
63
63
|
"no-blanks-blockquote": false,
|
|
64
64
|
"ol-prefix": {
|
|
65
|
-
style: "
|
|
65
|
+
style: "one_or_ordered"
|
|
66
66
|
},
|
|
67
67
|
"list-marker-space": {
|
|
68
68
|
ul_single: 1,
|
package/dist/index.mjs
CHANGED
|
@@ -54,7 +54,7 @@ var markdownlintConfig = {
|
|
|
54
54
|
"no-multiple-space-closed-atx": true,
|
|
55
55
|
"blanks-around-headers": false,
|
|
56
56
|
"header-start-left": true,
|
|
57
|
-
"no-duplicate-heading":
|
|
57
|
+
"no-duplicate-heading": false,
|
|
58
58
|
"single-h1": false,
|
|
59
59
|
"no-trailing-punctuation": {
|
|
60
60
|
punctuation: ".,:!?"
|
|
@@ -62,7 +62,7 @@ var markdownlintConfig = {
|
|
|
62
62
|
"no-multiple-space-blockquote": true,
|
|
63
63
|
"no-blanks-blockquote": false,
|
|
64
64
|
"ol-prefix": {
|
|
65
|
-
style: "
|
|
65
|
+
style: "one_or_ordered"
|
|
66
66
|
},
|
|
67
67
|
"list-marker-space": {
|
|
68
68
|
ul_single: 1,
|