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