fix: override markdown linting preset

Override markdown linting preset to disable a rule that seems useless and to change the default setting of 2 other rules.

Signed-off-by: oupala <oupala@users.noreply.github.com>
This commit is contained in:
oupala 2020-07-01 11:50:59 +02:00
parent 94058ef0a0
commit 7321990960

View file

@ -1,5 +1,9 @@
{
"plugins": [
"preset-lint-markdown-style-guide"
"preset-lint-markdown-style-guide",
["lint-list-item-indent", "space"],
["lint-maximum-line-length", false],
["lint-ordered-list-marker-value", "ordered"]
]
}