From db6bd54fa8828caf7322cf13ed554ae523f85ff8 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Sat, 14 Jan 2023 07:18:38 -0800 Subject: [PATCH] fix(prettier): Ignore .yaml, .gif, .ico, and .jpg files --- .prettierignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.prettierignore b/.prettierignore index 8c7000943d4..e0847af2591 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,9 +1,13 @@ # Since we generate a bunch of YAML and MarkDown files programatically # It triggers this constant fight between prettier and YAML/MD formatting # So let's not +*.yaml *.yml *.md *.mustache +*.gif +*.ico +*.jpg *.png *.svg *.prisma