Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions markdownlint_linter.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Add all rules
all

# Set minimum identation list as 2
rule 'MD007', :indent => 2

# Exclude line lenght check
exclude_rule 'MD013'

# Exclude ordered list item prefixt check
# Otherwise every markdown should use only one of the following styles, and bot are desired:
# - [1. 1. 1. ...]
# - [1. 2. 3. ...]
exclude_rule 'MD029'