mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-22 14:20:50 +08:00
19 lines
416 B
JavaScript
19 lines
416 B
JavaScript
module.exports = {
|
|
trailingComma: 'es5',
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
bracketSameLine: false,
|
|
arrowParens: 'avoid',
|
|
endOfLine: 'lf',
|
|
bracketSpacing: true,
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
singleQuote: true,
|
|
jsxSingleQuote: true,
|
|
printWidth: 100,
|
|
|
|
// Tailwind CSS
|
|
plugins: [require('prettier-plugin-tailwindcss')],
|
|
tailwindConfig: './packages/web/tailwind.config.ts',
|
|
}
|