From f0a360dcccf47225defb838582dfa4f457aaa337 Mon Sep 17 00:00:00 2001 From: Gus Narea Date: Thu, 14 Mar 2024 12:00:53 +0000 Subject: [PATCH] feat(Prettier): Configure Markdown files --- .prettierrc.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.prettierrc.json b/.prettierrc.json index f914f47..6ddbbe2 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,5 +1,14 @@ { "endOfLine": "lf", "singleQuote": true, - "trailingComma": "all" + "trailingComma": "all", + "overrides": [ + { + "files": ["*.md", "*.mdx"], + "options": { + "printWidth": 100, + "proseWrap": "always" + } + } + ] }