Skip to content

Commit

Permalink
Move markdownlint installation and rule to top level directory (#188)
Browse files Browse the repository at this point in the history
Also fixes the JSON markdownlint rules
  • Loading branch information
nielm authored Jan 15, 2024
1 parent 1c5839f commit b808fc3
Show file tree
Hide file tree
Showing 8 changed files with 560 additions and 67 deletions.
2 changes: 1 addition & 1 deletion .mdl.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"MD002": false,
"MD004": { "style": "asterisk" },
"MD007": { "indent": 4 },
"MD013": { "ignore_code_blocks": true, "tables": false },
"MD013": { "ignore_code_blocks": true, "code_blocks": false, "tables": false },
"MD029": { "style": "ordered" },
"MD030": { "ul_single": 3, "ul_multi": 3, "ol_single": 2, "ol_multi": 2 }
}
2 changes: 1 addition & 1 deletion .mdl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
rule 'MD007', :indent => 4

# Allow table and code lines to be longer than 80 chars
rule 'MD013', :ignore_code_blocks => true, :tables => false
rule 'MD013', :ignore_code_blocks => true, :code_blocks => false, :tables => false

# Ordered list item prefixes
rule 'MD029', :style => :ordered
Expand Down
Loading

0 comments on commit b808fc3

Please sign in to comment.