VUE 的eslint 代码规范检查

报错:

You may use special comments to disable some warnings.
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.

解决:

注释:...(config.dev.useEslint ? [createLintingRule()] : []),

在build的webpack.base.conf.js文件

VUE 的eslint 代码规范检查_第1张图片 

你可能感兴趣的:(vue.js,代码规范,javascript)