美文网首页
error Unexpected trailing comma

error Unexpected trailing comma

作者: wodeph | 来源:发表于2021-11-17 14:10 被阅读0次

    格式化代码之后会将单引号变为双引号,最后还会加上逗号,末尾的分号于是会导致三种错误:

    1. error  Strings must use singlequote  quotes

    2. error  Unexpected trailing comma    comma-dangle

    3. error  Extra semicolon 

    在.eslintrc.js文件  rules:加上下面几个

    'quotes' : 'off',

      'semi' : 'off' ,

        'comma-dangle':'off'

    相关文章

      网友评论

          本文标题:error Unexpected trailing comma

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