qwerty-learner/prettier.config.js
2023-04-23 01:14:48 +08:00

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')],
}