From e2e16836c70510a73dffbf88a1901c526066f16d Mon Sep 17 00:00:00 2001 From: prototypa Date: Wed, 17 Aug 2022 22:32:45 -0400 Subject: [PATCH] Add configurations to prettier --- .prettierrc.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .prettierrc.js diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..4dc2549 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,11 @@ +module.exports = { + plugins: [require.resolve("prettier-plugin-astro")], + overrides: [ + { + files: "*.astro", + options: { + parser: "astro", + }, + }, + ], +};