module.exports = { semi: true, trailingComma: 'es5', singleQuote: true, printWidth: 80, tabWidth: 2, useTabs: false, endOfLine: 'lf', arrowParens: 'avoid', bracketSpacing: true, bracketSameLine: false, quoteProps: 'as-needed', overrides: [ { files: '*.json', options: { printWidth: 120, }, }, { files: '*.md', options: { printWidth: 100, proseWrap: 'always', }, }, ], };