From 3caee506c961ae0e78503164ed6a0f81db3c8c32 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Thu, 10 Apr 2025 21:33:44 +0200 Subject: Add husky and update dependencies --- .prettierrc.cjs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .prettierrc.cjs (limited to '.prettierrc.cjs') diff --git a/.prettierrc.cjs b/.prettierrc.cjs new file mode 100644 index 0000000..498404d --- /dev/null +++ b/.prettierrc.cjs @@ -0,0 +1,13 @@ +/** @type {import("prettier").Config} */ +module.exports = { + plugins: ["prettier-plugin-astro"], + overrides: [ + { + files: "*.astro", + options: { + parser: "astro", + }, + }, + ], + editorconfig: true, +}; -- cgit v1.3