1. 'use strict';
    
  2. 
    
  3. const {esNextPaths} = require('./scripts/shared/pathsByLanguageVersion');
    
  4. 
    
  5. module.exports = {
    
  6.   bracketSpacing: false,
    
  7.   singleQuote: true,
    
  8.   jsxBracketSameLine: true,
    
  9.   trailingComma: 'es5',
    
  10.   printWidth: 80,
    
  11.   parser: 'flow',
    
  12.   arrowParens: 'avoid',
    
  13.   overrides: [
    
  14.     {
    
  15.       files: esNextPaths,
    
  16.       options: {
    
  17.         trailingComma: 'all',
    
  18.       },
    
  19.     },
    
  20.   ],
    
  21. };