13 lines
330 B
JavaScript
13 lines
330 B
JavaScript
/** @type {import("prettier").Config} */
|
|
const config = {
|
|
semi: false,
|
|
singleQuote: true,
|
|
printWidth: 120,
|
|
trailingComma: 'es5',
|
|
tailwindFunctions: ['clsx', 'tw'],
|
|
plugins: ['prettier-plugin-organize-imports', 'prettier-plugin-tailwindcss'],
|
|
tailwindStylesheet: './src/styles/tailwind.css',
|
|
}
|
|
|
|
export default config
|