go-view/prettier.config.js

12 lines
233 B
JavaScript
Raw Normal View History

2021-12-10 14:11:49 +08:00
module.exports = {
2022-06-15 17:18:39 +08:00
printWidth: 120,
tabWidth: 2,
useTabs: false,
singleQuote: true,
semi: false,
2022-06-15 17:18:39 +08:00
trailingComma: "none",
bracketSpacing: true,
jsxSingleQuote: true,
jsxBracketSameLine: false,
arrowParens: "avoid"
}