You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
446 B

2 years ago
  1. module.exports = {
  2. // These settings are duplicated in .editorconfig:
  3. tabWidth: 2, // indent_size = 2
  4. useTabs: false, // indent_style = space
  5. endOfLine: 'lf', // end_of_line = lf
  6. semi: false, // default: true
  7. singleQuote: true, // default: false
  8. printWidth: 100, // default: 80
  9. trailingComma: 'es5',
  10. bracketSpacing: true,
  11. overrides: [
  12. {
  13. files: '*.js',
  14. options: {
  15. parser: 'flow',
  16. },
  17. },
  18. ],
  19. }