dbgate/prettier.config.js

10 lines
162 B
JavaScript
Raw Normal View History

2019-12-30 19:49:12 +00:00
module.exports = {
trailingComma: 'es5',
tabWidth: 2,
semi: true,
singleQuote: true,
arrowParen: 'avoid',
2021-01-21 12:54:14 +00:00
arrowParens: 'avoid',
2019-12-30 19:49:12 +00:00
printWidth: 120,
};