0
0
Fork 0
mirror of https://github.com/DavidAnson/markdownlint-cli2-action.git synced 2024-10-16 12:07:01 +02:00

Add link-image-style and table-pipe-style to .markdownlint.json.

This commit is contained in:
David Anson 2024-01-12 21:13:00 -08:00
parent a07066f4d1
commit b90bac0a90

View file

@ -24,6 +24,12 @@
"strict": true, "strict": true,
"code_blocks": false "code_blocks": false
}, },
"link-image-style": {
"autolink": false,
"inline": false,
"collapsed": false,
"shortcut": false
},
"no-duplicate-heading": { "no-duplicate-heading": {
"siblings_only": true "siblings_only": true
}, },
@ -43,6 +49,9 @@
"strong-style": { "strong-style": {
"style": "asterisk" "style": "asterisk"
}, },
"table-pipe-style": {
"style": "leading_and_trailing"
},
"ul-style": { "ul-style": {
"style": "dash" "style": "dash"
} }