14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
module.exports = {
|
|
endOfLine: 'auto',
|
|
semi: true,
|
|
trailingComma: 'all',
|
|
singleQuote: true,
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
arrowParens: 'always',
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
tailwindFunctions: ['clsx', 'cn'],
|
|
tailwindConfig: './tailwind.config.js',
|
|
};
|