11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
|
|
module.exports = {
|
||
|
|
printWidth: 100,
|
||
|
|
tabWidth: 2,
|
||
|
|
singleQuote: true,
|
||
|
|
bracketSameLine: true,
|
||
|
|
trailingComma: 'es5',
|
||
|
|
|
||
|
|
plugins: [require.resolve('prettier-plugin-tailwindcss')],
|
||
|
|
tailwindAttributes: ['className'],
|
||
|
|
};
|