From cbf9a7b672fce0943cc6306c506dda3ab1c1024e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Herg=C3=A8s?= Date: Sat, 9 Aug 2025 13:50:32 +0200 Subject: chore(format): install prettier --- .prettierrc.mjs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .prettierrc.mjs (limited to '.prettierrc.mjs') 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", + }, + }, + ], +}; -- cgit v1.2.3