11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
/** @type {import("prettier").Config & { [key:string]: any }} */
|
|
module.exports = {
|
|
arrowParens: "always",
|
|
singleQuote: false,
|
|
jsxSingleQuote: false,
|
|
semi: true,
|
|
trailingComma: "all",
|
|
tabWidth: 4,
|
|
plugins: ["prettier-plugin-tailwindcss", "prettier-plugin-astro"],
|
|
};
|