1
0
Fork 0

Disable line length rule for markdownlint

It's impossible to change the line length in .mdlrc file, it requires
writing a project-specific style ruby file. It seems like MD013 is
buggy, as we have tables with longer line lengths already, and the
warning shows up at column 85 and not 80, as documented in official
markdownlint.
This commit is contained in:
Patryk Obara 2020-01-14 23:00:07 +01:00
parent 91f43c9286
commit 62413b94c5

2
.mdlrc
View file

@ -1 +1 @@
rules "~MD005", "~MD033", "~MD046"
rules "~MD005", "~MD033", "~MD046", "~MD013"