1234567891011121314 |
- module.exports = {
- printWidth: 100,
- tabWidth: 2,
- useTabs: false,
- semi: true,
- singleQuote: true,
- vueIndentScriptAndStyle: true,
- trailingComma: 'none',
- bracketSpacing: true,
- proseWrap: 'never',
- htmlWhitespaceSensitivity: 'strict',
- endOfLine: 'auto',
- arrowParens: 'avoid'
- };
|