Massive/.prettierrc.js

9 lines
156 B
JavaScript
Raw Normal View History

2022-06-30 06:50:52 +00:00
module.exports = {
arrowParens: 'avoid',
bracketSameLine: true,
bracketSpacing: false,
singleQuote: true,
trailingComma: 'all',
2022-10-31 04:22:08 +00:00
semi: false,
};