19 lines
292 B
JavaScript
19 lines
292 B
JavaScript
|
/** @type {import("prettier").Config} */
|
||
|
export default {
|
||
|
plugins: ["prettier-plugin-astro"],
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ["*.html"],
|
||
|
options: {
|
||
|
parser: "html",
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
files: ["*.md"],
|
||
|
options: {
|
||
|
parser: "mdx",
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|