diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-10 21:33:44 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-10 21:33:44 +0200 |
| commit | 3caee506c961ae0e78503164ed6a0f81db3c8c32 (patch) | |
| tree | 91bacabb0fa2b12f0e041f26959472381f3d6a63 /.prettierrc.cjs | |
| parent | f8ea986c8d26a519ba30dfa97095487f85a09237 (diff) | |
Add husky and update dependencies
Diffstat (limited to '.prettierrc.cjs')
| -rw-r--r-- | .prettierrc.cjs | 13 |
1 files changed, 13 insertions, 0 deletions
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, +}; |
