about summary refs log tree commit diff
path: root/.prettierrc.js
blob: 15ad6f4221de223f96229e93e15291249704fee8 (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = {
  semi: false,
  arrowParens: 'avoid',
  bracketSameLine: true,
  bracketSpacing: false,
  singleQuote: true,
  trailingComma: 'all',
}