added yaml-configs

This commit is contained in:
Nicole Dresselhaus 2025-06-04 10:22:10 +02:00
parent da496ace05
commit ace703ea1d
2 changed files with 21 additions and 0 deletions

13
.markdownlint.yaml Normal file
View File

@ -0,0 +1,13 @@
# ~/.markdownlint.yaml
# Enable all rules by default
# https://github.com/markdownlint/markdownlint/blob/main/docs/RULES.md
default: true
# Allow inline HTML which is useful in Github-flavour markdown for:
# - crafting headings with friendly hash fragments.
# - adding collapsible sections with <details> and <summary>.
MD033: false
# Ignore line length rules (as Prettier handles this).
MD013: false

8
.prettierrc.yaml Normal file
View File

@ -0,0 +1,8 @@
# ~/.prettierrc.yaml
overrides:
- files:
- "*.md"
- "*.markdown"
options:
proseWrap: "always"
printWidth: 80