mirror of
https://github.com/zen-browser/astro-site-test.git
synced 2025-07-07 12:05:30 +02:00
14 lines
275 B
JavaScript
14 lines
275 B
JavaScript
// .prettierrc.mjs
|
|
/** @type {import("prettier").Config} */
|
|
export default {
|
|
plugins: ["prettier-plugin-astro", "prettier-plugin-tailwindcss"],
|
|
printWidth: 80,
|
|
overrides: [
|
|
{
|
|
files: "*.astro",
|
|
options: {
|
|
parser: "astro",
|
|
},
|
|
},
|
|
],
|
|
};
|