详解Vue取消eslint语法限制


Posted in Javascript onAugust 04, 2018

由于vue对语法的限制过于严格,以至于在我第一次编译运行的时候一直编译失败,当然也包括一些警告:

➜ my-project npm run dev 
 
> bblee-app@1.0.0 dev /Users/bianlifeng/my-project
> webpack-dev-server --inline --progress --config build/webpack.dev.conf.js
 
 95% emitting                                      
 
 WARNING Compiled with 1 warnings                                                               5:00:12 PM
 
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 0 spaces but found 2  
 src/components/Message.vue:46:1
  export default {
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 2 spaces but found 4  
 src/components/Message.vue:47:1
   data() {
  ^
 
 ✘ http://eslint.org/docs/rules/space-before-function-paren Missing space before function parentheses   
 src/components/Message.vue:47:9
   data() {
      ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 4 spaces but found 6  
 src/components/Message.vue:48:1
    return {
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 6 spaces but found 8  
 src/components/Message.vue:49:1
     form: {
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 8 spaces but found 10 
 src/components/Message.vue:50:1
      name: '',
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 8 spaces but found 10 
 src/components/Message.vue:51:1
      region: '',
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 8 spaces but found 10 
 src/components/Message.vue:52:1
      date1: '',
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 8 spaces but found 10 
 src/components/Message.vue:53:1
      date2: '',
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 8 spaces but found 10 
 src/components/Message.vue:54:1
      delivery: false,
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 8 spaces but found 10 
 src/components/Message.vue:55:1
      type: [],
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 8 spaces but found 10 
 src/components/Message.vue:56:1
      resource: '',
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 8 spaces but found 10 
 src/components/Message.vue:57:1
      desc: ''
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 6 spaces but found 8  
 src/components/Message.vue:58:1
     }
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 4 spaces but found 6  
 src/components/Message.vue:59:1
    }
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 2 spaces but found 4  
 src/components/Message.vue:60:1
   },
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 2 spaces but found 4  
 src/components/Message.vue:61:1
   methods: {
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 4 spaces but found 6  
 src/components/Message.vue:62:1
    onSubmit() {
  ^
 
 ✘ http://eslint.org/docs/rules/space-before-function-paren Missing space before function parentheses   
 src/components/Message.vue:62:15
    onSubmit() {
         ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 6 spaces but found 8  
 src/components/Message.vue:63:1
     console.log('submit!');
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 4 spaces but found 6  
 src/components/Message.vue:64:1
    }
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 2 spaces but found 4  
 src/components/Message.vue:65:1
   }
  ^
 
 ✘ http://eslint.org/docs/rules/indent            Expected indentation of 0 spaces but found 2  
 src/components/Message.vue:66:1
  }
  ^
 
 
✘ 23 problems (23 errors, 0 warnings)
 
 
Errors:
 21 http://eslint.org/docs/rules/indent
  2 http://eslint.org/docs/rules/space-before-function-paren
 
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.

当然,这里的警告我是知道怎么回事,但是这个错误我就很不明白了,原来eslint是一个语法检查工具,但是限制很严格,在我的vue文件里面很多空格都会导致红线(红线可以关闭提示),虽然可以关闭,但是在编译的时候老是会跳出来,所以能关闭是最好的了。

关闭方法:

在build/webpack.base.conf.js文件中,注释或者删除掉:module->rules中有关eslint的规则

module: {
 rules: [
  //...(config.dev.useEslint ? [createLintingRule()] : []), // 注释或者删除
  {
   test: /\.vue$/,
   loader: 'vue-loader',
   options: vueLoaderConfig
  },
  ...
  }
 ]
}

然后重新运行一下npm run dev或者构建命令 npm run build就可以啦。

Javascript 相关文章推荐
删除重复数据的算法
Nov 23 Javascript
Node.js:Windows7下搭建的Node.js服务(来玩玩服务器端的javascript吧,这可不是前端js插件)
Jun 27 Javascript
html中table数据排序的js代码
Aug 09 Javascript
JS+CSS实现一个气泡提示框
Aug 18 Javascript
网页中可关闭的漂浮窗口实现可自行调节
Aug 20 Javascript
Javascript实现获取及设置光标位置的方法
Jul 21 Javascript
JavaScript为事件句柄绑定监听函数实例详解
Dec 15 Javascript
javascript拖拽应用实例
Mar 25 Javascript
利用vscode编写vue的简单配置详解
Jun 17 Javascript
Angular在模板驱动表单中自定义校验器的方法
Aug 09 Javascript
JavaScript canvas绘制渐变颜色的矩形
Feb 18 Javascript
js+canvas实现简单扫雷小游戏
Jan 22 Javascript
JavaScript原型对象、构造函数和实例对象功能与用法详解
Aug 04 #Javascript
JavaScript中变量、指针和引用功能与操作示例
Aug 04 #Javascript
webpack4.x开发环境配置详解
Aug 04 #Javascript
微信小程序实现收藏与取消收藏切换图片功能
Aug 03 #Javascript
解决mpvue + vuex 开发微信小程序vuex辅助函数mapState、mapGetters不可用问题
Aug 03 #Javascript
mpvue跳转页面及注意事项
Aug 03 #Javascript
JavaScript高级函数应用之分时函数实例分析
Aug 03 #Javascript
You might like
win7系统配置php+Apache+mysql环境的方法
2015/08/21 PHP
thinkPHP基于ajax实现的菜单与分页示例
2016/07/12 PHP
Flash对联广告的关闭按钮讨论
2007/01/30 Javascript
JavaScript 学习点滴记录
2009/04/24 Javascript
JavaScript中通过闭包解决只能取得包含函数中任何变量最后一个值的问题
2010/08/12 Javascript
javascript中方便增删改cookie的一个类
2012/10/11 Javascript
js验证是否为数字的总结
2013/04/14 Javascript
js如何实现设计模式中的模板方法
2013/07/23 Javascript
js图片处理示例代码
2014/05/12 Javascript
浅谈Javascript中的Function与Object
2015/01/26 Javascript
js获取页面description的方法
2015/05/21 Javascript
jquery实现的淡入淡出下拉菜单效果
2015/08/25 Javascript
vue.js+boostrap项目实践(案例详解)
2016/09/21 Javascript
简单实现IONIC购物车功能
2017/01/10 Javascript
ReactNative之键盘Keyboard的弹出与消失示例
2017/07/11 Javascript
详解Node中导入模块require和import的区别
2017/08/11 Javascript
vue router demo详解
2017/10/13 Javascript
微信小程序如何获取openid及用户信息
2018/01/26 Javascript
vue项目中api接口管理总结
2018/04/20 Javascript
Javascript异步执行不按顺序解决方案
2020/04/30 Javascript
如何在vue 中引入使用jquery
2020/11/10 jQuery
[00:56]2014DOTA2国际邀请赛 DK、iG 赛前探访
2014/07/10 DOTA
python连接mysql数据库示例(做增删改操作)
2013/12/31 Python
Python使用matplotlib绘制三维图形示例
2018/08/25 Python
Python global全局变量函数详解
2018/09/18 Python
使用python写的opencv实时监测和解析二维码和条形码
2019/08/14 Python
关于Python形参打包与解包小技巧分享
2019/08/24 Python
Django框架 querySet功能解析
2019/09/04 Python
python实现将视频按帧读取到自定义目录
2019/12/10 Python
css3简单练习实现遨游浏览器logo的绘制
2013/01/30 HTML / CSS
俄罗斯护发和专业化妆品购物网站:Hihair
2019/09/28 全球购物
奢华的意大利皮革手袋:Bene Handbags
2019/10/29 全球购物
公司授权委托书
2014/04/04 职场文书
乡镇安全生产目标责任书
2014/07/23 职场文书
Python自动化之批量处理工作簿和工作表
2021/06/03 Python
python中sqllite插入numpy数组到数据库的实现方法
2021/06/21 Python