aboutsummaryrefslogtreecommitdiff
path: root/.prettierrc.mjs
diff options
context:
space:
mode:
Diffstat (limited to '.prettierrc.mjs')
-rw-r--r--.prettierrc.mjs12
1 files changed, 12 insertions, 0 deletions
diff --git a/.prettierrc.mjs b/.prettierrc.mjs
new file mode 100644
index 0000000..7e61930
--- /dev/null
+++ b/.prettierrc.mjs
@@ -0,0 +1,12 @@
+/** @type {import("prettier").Config} */
+export default {
+ plugins: ["prettier-plugin-astro"],
+ overrides: [
+ {
+ files: "*.astro",
+ options: {
+ parser: "astro",
+ },
+ },
+ ],
+};