mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-25 09:41:49 +08:00
18 lines
397 B
JavaScript
18 lines
397 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,
|
|
|
|
// Tailwind CSS
|
|
plugins: [require('prettier-plugin-tailwindcss')],
|
|
tailwindConfig: './packages/web/tailwind.config.js',
|
|
}
|