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