Skip to content

Commit

Permalink
chore(config): Add markdownlint configuration file
Browse files Browse the repository at this point in the history
Adds a configuration file for markdownlint with custom rule settings.
The configuration enables all rules by default with specific adjustments
for list indentation, line length, duplicate headings, and more.
  • Loading branch information
pheus committed Sep 26, 2024
1 parent 7c5483a commit 4502f09
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
# Default to enable all rules
default: true

# MD007: unordered-list-indent
MD007:
indent: 4

# MD013: line-length
MD013: true

# MD024: no-duplicate-heading
MD024:
siblings_only: true

# MD033: no-inline-html
MD033: false

# MD041: first-line-h1
MD041: false
...

0 comments on commit 4502f09

Please sign in to comment.