美文网首页
Vue,ESLint踩坑之旅

Vue,ESLint踩坑之旅

作者: 传说中的汽水枪 | 来源:发表于2018-07-27 17:05 被阅读81次

主要是修改.eslintrc.js文件

indent

错误提示:
http://eslint.org/docs/rules/indent
Expected indentation of 2 spaces but found 4
因为我把项目中的缩进改成了4个了,所以会报错。
简单粗暴的解决方案:

    // 关闭缩进检查
    'indent' : 'off',

no-multiple-empty-lines

http://eslint.org/docs/rules/no-multiple-empty-lines
开发过程难免会需要预留比较多的空行出来做后续的处理,这个也可以关闭掉:

quotes

http://eslint.org/docs/rules/quotes
Strings must use singlequote
用单引号来描述一个字符串,是一个好建议,修改项目中出现的这个error

space-before-function-paren

http://eslint.org/docs/rules/space-before-function-paren
Missing space before function parentheses
好的建议,保留下来,修改出现的地方

semi

http://eslint.org/docs/rules/semi
Extra semicolon
多余的分号

no-trailing-spaces

http://eslint.org/docs/rules/no-trailing-spaces
Trailing spaces not allowed
多余的空格,在两段代码之间增加一个换行就会多出4个空格,这个先不要了
添加如下:

    'no-trailing-spaces' : ['off', 
        {
            'skipBlankLines': true,
            'ignoreComments': true,
        }
    ],

但是为什么这个不起作用!!!!!!!!明明都已经关闭了,但是还是提示这种错误。谁能告诉我~~~~

其他备用参考:
https://blog.csdn.net/helpzp2008/article/details/51507428

相关文章

  • Vue,ESLint踩坑之旅

    主要是修改.eslintrc.js文件 indent 错误提示:http://eslint.org/docs/ru...

  • vue踩过的坑

    vue踩过的坑

  • Vue踩坑之Vue-router

    照着教程学习Vue,由于教程使用的是Vue1,但是我用npm安装的是2.0版本,所以开始了踩坑之旅 关于Vue-r...

  • Vue2踩坑之Eslint

    写Vue2的模块化的时候,代码格式稍微不规范,比如:多打了一个空格、没有正确缩进等等,都会报错,报错的意思 就是说...

  • vue项目实战踩坑之旅

    一直很想学习vue,但是没有机会下手,因为老板让我们用angular做项目,而这次。。。我偷偷摸摸的用了vue,做...

  • vue2.0踩坑之旅

    初入vuejs,描述一些踩坑经历 methods方法不能使用es6的写法来实现 这样写的话,会发现数据不会发生变化...

  • Vue踩坑实录(二)

    在上一篇中说了一下踩过的前三个坑,剩下的坑就在这篇中全部搞定吧。Vue踩坑实录(一) Vue-cli .js?.V...

  • vue项目启动出现的问题

    vue踩坑-Error: listen EADDRNOTAVAIL 192.168.1.122:8081 1:cd...

  • RecyclerView ItemTouchHelper 拖动排

    RecyclerView ItemTouchHelper 踩坑之旅 要实现的功能: recyclerview it...

  • VScode 使用ESlint踩坑

    坑1:状态栏根本无 ESlint 解决办法:点击扩展里面的ESlint ,选择启用即可。注意的是如果开启了状态栏还...

网友评论

      本文标题:Vue,ESLint踩坑之旅

      本文链接:https://www.haomeiwen.com/subject/agjgmftx.html