17 lines
288 B
JavaScript
17 lines
288 B
JavaScript
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
semi: true,
|
|
singleQuote: false,
|
|
printWidth: 100,
|
|
trailingComma: "all",
|
|
plugins: ["prettier-plugin-astro"],
|
|
overrides: [
|
|
{
|
|
files: "*.astro",
|
|
options: {
|
|
parser: "astro",
|
|
},
|
|
},
|
|
],
|
|
};
|