1234567891011121314 |
- module.exports = {
- // 一行的字符数,如果超过会进行换行,默认为80
- printWidth: 100,
- // 行位是否使用分号,默认为true
- semi: false,
- vueIndentScriptAndStyle: true,
- // 字符串是否使用单引号,默认为false,使用双引号
- singleQuote: true,
- // 是否使用尾逗号,有三个可选值"<none|es5|all>"
- trailingComma: 'all',
- proseWrap: 'never',
- htmlWhitespaceSensitivity: 'strict',
- endOfLine: 'auto',
- };
|