qwerty-learner-vscode/prettier.config.js
2023-05-21 01:47:57 +08:00

16 lines
260 B
JavaScript

module.exports = {
singleQuote: true,
trailingComma: 'all',
printWidth: 140,
bracketSpacing: true,
semi: false,
tabWidth: 2,
jsxSingleQuote: false,
overrides: [
{
files: '.prettierrc',
options: { parser: 'json' },
},
],
}