From ace703ea1ddeb9db77ad588d1abd0a95f129263a Mon Sep 17 00:00:00 2001 From: Nicole Dresselhaus Date: Wed, 4 Jun 2025 10:22:10 +0200 Subject: [PATCH] added yaml-configs --- .markdownlint.yaml | 13 +++++++++++++ .prettierrc.yaml | 8 ++++++++ 2 files changed, 21 insertions(+) create mode 100644 .markdownlint.yaml create mode 100644 .prettierrc.yaml diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 0000000..c709386 --- /dev/null +++ b/.markdownlint.yaml @@ -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
and . +MD033: false + +# Ignore line length rules (as Prettier handles this). +MD013: false diff --git a/.prettierrc.yaml b/.prettierrc.yaml new file mode 100644 index 0000000..88ce99e --- /dev/null +++ b/.prettierrc.yaml @@ -0,0 +1,8 @@ +# ~/.prettierrc.yaml +overrides: + - files: + - "*.md" + - "*.markdown" + options: + proseWrap: "always" + printWidth: 80