2022-03-13 14:40:38 +08:00
|
|
|
module.exports = {
|
|
|
|
trailingComma: 'es5',
|
|
|
|
tabWidth: 2,
|
|
|
|
useTabs: false,
|
|
|
|
semi: false,
|
2022-03-17 14:45:04 +08:00
|
|
|
bracketSameLine: false,
|
2022-03-13 14:40:38 +08:00
|
|
|
arrowParens: 'avoid',
|
|
|
|
endOfLine: 'lf',
|
|
|
|
bracketSpacing: true,
|
|
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
|
|
singleQuote: true,
|
2022-03-17 19:30:43 +08:00
|
|
|
jsxSingleQuote: true,
|
2023-01-07 14:39:03 +08:00
|
|
|
printWidth: 100,
|
2022-03-13 14:40:38 +08:00
|
|
|
|
|
|
|
// Tailwind CSS
|
|
|
|
plugins: [require('prettier-plugin-tailwindcss')],
|
2023-09-04 12:51:56 +08:00
|
|
|
tailwindConfig: './packages/web/tailwind.config.ts',
|
2022-03-13 14:40:38 +08:00
|
|
|
}
|