From 04bc3962ad9db42e5ffd8c2ee4306b2aa7a51392 Mon Sep 17 00:00:00 2001 From: Amir Haroush Date: Mon, 1 May 2023 23:09:26 +0300 Subject: [PATCH] markdownlint: set indent 2 to rule MD007 the default indent is 3 so we must set it to 2 as our md files are all indented with 2. Signed-off-by: Amir Haroush Signed-off-by: Shai Fultheim Change-Id: I76c501311b6a4443dc6fc655894487b762d67abb Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17913 Reviewed-by: Shuhei Matsumoto Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris --- mdl_rules.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/mdl_rules.rb b/mdl_rules.rb index 0e5684ec0..4571ccadc 100644 --- a/mdl_rules.rb +++ b/mdl_rules.rb @@ -1,5 +1,6 @@ all exclude_rule 'MD004' +rule 'MD007', :indent => 2 exclude_rule 'MD010' rule 'MD013', :line_length => 170 exclude_rule 'MD024'