| 12345678910111213141516171819202122 |
- module.exports = {
- printWidth: 120,
- singleQuote: true,
- tabWidth: 4,
- arrowParens: 'avoid',
- trailingComma: 'none',
- overrides: [
- {
- files: '*.html',
- options: {
- parser: 'html'
- }
- },
- {
- files: '*.vue',
- options: {
- parser: 'vue'
- }
- }
- ],
- endOfLine: 'crlf'
- };
|