From 2a847b1f01c3404023aeacdb86b07b290ef59578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20D=C3=B6rfelt?= Date: Sun, 27 Oct 2024 16:29:59 +0100 Subject: [PATCH] align prettier to mkdocs - apply 4 space indentation to all markdown files - don't format yaml blocks --- .prettierrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.prettierrc b/.prettierrc index c7b03967b..39899f201 100644 --- a/.prettierrc +++ b/.prettierrc @@ -7,9 +7,10 @@ "trailingComma": "es5", "overrides": [ { - "files": ["index.md", "administration.md"], + "files": ["*.md"], "options": { - "tabWidth": 4 + "tabWidth": 4, + "embeddedLanguageFormatting": "off" } } ]