setup-go/.prettierrc.js

11 lines
181 B
JavaScript
Raw Normal View History

2023-02-28 19:38:54 +01:00
module.exports = {
printWidth: 80,
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: true,
trailingComma: 'none',
bracketSpacing: false,
2023-03-03 13:38:44 +01:00
arrowParens: 'avoid'
2023-02-28 19:38:54 +01:00
};