当前位置: 移动技术网 > IT编程>脚本编程>vue.js > 详解Vue取消eslint语法限制

详解Vue取消eslint语法限制

2018年08月08日  | 移动技术网IT编程  | 我要评论
由于vue对语法的限制过于严格,以至于在我第一次编译运行的时候一直编译失败,当然也包括一些警告: ➜ my-project npm run dev

由于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就可以啦。

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网