diff options
author | oupala | 2020-07-01 11:50:59 +0200 |
---|---|---|
committer | oupala | 2020-07-10 18:57:31 +0200 |
commit | 73219909602e026616af6a97f588bc9e0eab1fa8 (patch) | |
tree | 2594ce0b086ad2440dc5c23abcf6863e790e76c2 /.remarkrc | |
parent | 94058ef0a02d02df4ae381ada2e6de06b57fcd90 (diff) |
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>
Diffstat (limited to '.remarkrc')
-rw-r--r-- | .remarkrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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"] ] } |