-
npm i -D @pentible/prettier
-
prettier.config.mjs
export { default } from "@pentible/prettier";
// OR if you need to override settings
import pentible from "@pentible/prettier";
/** @type {import("prettier").Config} */
const config = {
...pentible,
plugins: [...pentible.plugins, "prettier-plugin-tailwindcss"],
};
export default config;