搭建vue项目的时候不小心安装了Eslint
,在代码运行的时候经常报错,那么如何关闭Eslint
代码校验呢?下面web建站小编给大家介绍一下!
报错介绍:
'vm' is assigned a value but never used (vm被定义了但是从未使用) Newline required at end of file but not found (在结尾必须要增加一行但是没有找到) Missing space before value for key 'render' (在render属性中少了空格) //甚至是连注释都报错 Expected space or tab after '//' in comment Expected exception block, space or tab after '/*' in comment
解决方法:
//找到build\webpack.base.conf.js文件,注释以下代码 module: { rules:[ ... (config.dev.useEslint ? [ // createLintingRule() //注释掉 ] : []), //... ] }
这样应该就不会报错了!
JavaScript(eslint)标准代码规范(附代码示例)
标签: eslint
上面是“vue项目如何关闭Eslint代码校验”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2892.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!