File size: 208 Bytes
a8aec61 |
1 2 3 4 5 6 7 8 9 |
/** @type {import('prettier').Config} */
module.exports = {
singleQuote: true,
semi: false,
trailingComma: 'none',
plugins: ['prettier-plugin-tailwindcss'],
filepath: './src/**/*.{js,ts,jsx,tsx}'
}
|