mirror of
https://github.com/SkyfallWasTaken/skyfalldev.git
synced 2024-11-10 04:09:38 +00:00
16 lines
273 B
JavaScript
16 lines
273 B
JavaScript
// .prettierrc.mjs
|
|
/** @type {import("prettier").Config} */
|
|
export default {
|
|
trailingComma: "all",
|
|
singleQuote: false,
|
|
|
|
plugins: ["prettier-plugin-astro"],
|
|
overrides: [
|
|
{
|
|
files: "*.astro",
|
|
options: {
|
|
parser: "astro",
|
|
},
|
|
},
|
|
],
|
|
};
|