๐Ÿ“ฆ airbnb / visx

๐Ÿ“„ prettier.config.js ยท 14 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14module.exports = {
  arrowParens: 'always',
  bracketSpacing: true,
  bracketSameLine: false,
  printWidth: 100,
  proseWrap: 'always',
  requirePragma: false,
  semi: true,
  singleQuote: true,
  tabWidth: 2,
  trailingComma: 'all',
  useTabs: false,
};