setup-go/.prettierrc.js

12 lines
202 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:34:36 +01:00
arrowParens: 'avoid',
endOfLine: 'auto'
2023-02-28 19:38:54 +01:00
};