12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
export default {
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
semi: false,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'es5',
|
|
printWidth: 80,
|
|
bracketSpacing: true,
|
|
bracketSameLine: false,
|
|
arrowParens: 'avoid',
|
|
}
|