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