summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/ctraces/markdownlint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fluent-bit/lib/ctraces/markdownlint.rb')
-rw-r--r--src/fluent-bit/lib/ctraces/markdownlint.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/fluent-bit/lib/ctraces/markdownlint.rb b/src/fluent-bit/lib/ctraces/markdownlint.rb
new file mode 100644
index 000000000..598a9b5b6
--- /dev/null
+++ b/src/fluent-bit/lib/ctraces/markdownlint.rb
@@ -0,0 +1,16 @@
+#!/usr/bin/ruby
+
+# Enable all rules by default
+all
+
+# Extend line length, since each sentence should be on a separate line.
+rule 'MD013', :line_length => 99999, :ignore_code_blocks => true
+
+# Allow in-line HTML
+exclude_rule 'MD033'
+
+# Nested lists should be indented with two spaces.
+rule 'MD007', :indent => 2
+
+# Bash defaulting confuses this and now way to ignore code blocks
+exclude_rule 'MD029'