test: Add comment explaining the line length rule issue better

This commit is contained in:
James Shubin
2024-07-23 17:26:18 -04:00
parent ccb0e55d5a
commit d9f8dd53c1

View File

@@ -37,6 +37,8 @@ exclude_rule 'MD029' # Ordered list item prefix
exclude_rule 'MD039' # Spaces inside link text exclude_rule 'MD039' # Spaces inside link text
# Line length # Line length
# FIXME: Note this doesn't prevent a long word from being over 80, it only stops
# new words from starting after you've already passed the 80 char limit.
rule 'MD013', :line_length => 80, :ignore_code_blocks => true, :tables => false rule 'MD013', :line_length => 80, :ignore_code_blocks => true, :tables => false
EOF EOF