aboutsummaryrefslogtreecommitdiff
path: root/.prettierrc.cjs
blob: 498404d6689ee58cf3659cdaa61237d07a82705f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/** @type {import("prettier").Config} */
module.exports = {
  plugins: ["prettier-plugin-astro"],
  overrides: [
    {
      files: "*.astro",
      options: {
        parser: "astro",
      },
    },
  ],
  editorconfig: true,
};