Skip to content

Commit

Permalink
Disable multiple header warning in .markdownlint.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
florianrusch committed Jan 4, 2024
1 parent 3241f2d commit f2190d4
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Documentation: https://github.com/DavidAnson/markdownlint-cli2#configuration

# Setting the special default rule to true or false includes/excludes all rules by default.
"default": true
default: true

# Do not restrict line length: https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#MD013
"MD013": false
MD013:
code_blocks: false
headings: false
line_length: 120
tables: false

# Multiple headings with the same content: https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#MD024
MD024: false

# Do not restrict inline HTML: https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#MD033
"MD033": false
MD033: false

0 comments on commit f2190d4

Please sign in to comment.