From 203d6330d6bd4e09c0eb24874d6344051b0af185 Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Fri, 18 Oct 2024 13:57:56 +0100 Subject: [PATCH] Add Markdown lint configuration style file --- .mdl_style.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .mdl_style.rb diff --git a/.mdl_style.rb b/.mdl_style.rb new file mode 100644 index 000000000..e5a02a7af --- /dev/null +++ b/.mdl_style.rb @@ -0,0 +1,17 @@ +# Markdownlint Rules +# +# The Markdownlint style is defined according to the following rules: +# https://github.com/markdownlint/markdownlint/blob/main/docs/creating_styles.md +# +# The rules are defined in the following page: +# https://github.com/markdownlint/markdownlint/blob/main/docs/RULES.md + +all + +# Excluded rules +exclude_rule "MD013" # Line length +exclude_rule "MD024" # Multiple headers with the same content + +# Rule parameters +rule "MD007", :indent => 2 # Unordered list indentation +rule "MD026", :punctuation => ".,;:!" # Trailing punctuation in header