From 865dbc274a2c647634115a1c16b12c8f84647a53 Mon Sep 17 00:00:00 2001 From: techfg Date: Tue, 30 Apr 2024 14:14:08 -0700 Subject: [PATCH] chore: ensure astro files formatted with astro parser --- .prettierrc.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.prettierrc.json b/.prettierrc.json index 323a3f9..959c410 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,5 +1,13 @@ { "singleQuote": true, "trailingComma": "none", - "plugins": ["prettier-plugin-astro"] + "plugins": ["prettier-plugin-astro"], + "overrides": [ + { + "files": "*.astro", + "options": { + "parser": "astro" + } + } + ] }