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