mirror of
https://github.com/RealKai42/qwerty-learner.git
synced 2024-11-25 16:22:53 +08:00
17 lines
354 B
JavaScript
17 lines
354 B
JavaScript
module.exports = {
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
printWidth: 140,
|
|
bracketSpacing: true,
|
|
semi: false,
|
|
tabWidth: 2,
|
|
jsxSingleQuote: false,
|
|
overrides: [
|
|
{
|
|
files: '.prettierrc',
|
|
options: { parser: 'json' },
|
|
},
|
|
],
|
|
plugins: ['@trivago/prettier-plugin-sort-imports', require('prettier-plugin-tailwindcss')],
|
|
}
|