nelle-observer/frontend/.prettierrc.mjs

19 lines
292 B
JavaScript
Raw Permalink Normal View History

2024-10-30 19:59:07 -06:00
/** @type {import("prettier").Config} */
export default {
plugins: ["prettier-plugin-astro"],
overrides: [
{
files: ["*.html"],
options: {
parser: "html",
},
},
{
files: ["*.md"],
options: {
parser: "mdx",
},
},
],
};