From 62413b94c567fa8f732d4cc62f80ac7bad1bc715 Mon Sep 17 00:00:00 2001 From: Patryk Obara Date: Tue, 14 Jan 2020 23:00:07 +0100 Subject: [PATCH] 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. --- .mdlrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mdlrc b/.mdlrc index b250ff0c..b8a6c388 100644 --- a/.mdlrc +++ b/.mdlrc @@ -1 +1 @@ -rules "~MD005", "~MD033", "~MD046" +rules "~MD005", "~MD033", "~MD046", "~MD013"