diff options
Diffstat (limited to 'fluent-bit/lib/cmetrics/markdownlint.rb')
-rw-r--r-- | fluent-bit/lib/cmetrics/markdownlint.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/fluent-bit/lib/cmetrics/markdownlint.rb b/fluent-bit/lib/cmetrics/markdownlint.rb deleted file mode 100644 index 598a9b5b6..000000000 --- a/fluent-bit/lib/cmetrics/markdownlint.rb +++ /dev/null @@ -1,16 +0,0 @@ -#!/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' |