1234567891011121314 |
- module.exports = {
- arrowParens: 'always',
- bracketSpacing: true,
- endOfLine: 'lf',
- jsxBracketSameLine: false,
- printWidth: 100,
- proseWrap: 'always',
- semi: true,
- singleQuote: true,
- tabWidth: 2,
- trailingComma: 'none',
- useTabs: false
- };
|