|
1234567891011121314151617 |
- module.exports = {
- tabWidth: 2,
- jsxSingleQuote: true,
- jsxBracketSameLine: true,
- printWidth: 100,
- singleQuote: true,
- semi: false,
- overrides: [
- {
- files: '*.json',
- options: {
- printWidth: 200,
- },
- },
- ],
- arrowParens: 'always',
- };
|