vue-cil3 运行报错 --- warnings potentially fixable with the `--fix` option

原因:vscode、vetur、slint规范化冲突,并且不符合ESlint规范

functineName()   左括号前没有空格报错

'space-before-function-paren': 0

vue-cil3 运行报错 --- warnings potentially fixable with the `--fix` option_第1张图片

分号;  报错

引号需要是单引号

以上两个问题,需要自己创建一个.prettierrc的JSON文件

"semi":false,         // 在格式化的时候不加分号
"singleQuote":true         // 将双引号转成单引号

vue-cil3 运行报错 --- warnings potentially fixable with the `--fix` option_第2张图片

vue-cil3 运行报错 --- warnings potentially fixable with the `--fix` option_第3张图片

你可能感兴趣的:(错误,ESlint,Vue,Vue,ESlint)