美文网首页
eslint禁用规则

eslint禁用规则

作者: a6dba64ebe2a | 来源:发表于2020-03-11 16:27 被阅读0次
    1. 单个文件禁用(script标签中加入)
      /* eslint-disable space-before-function-paren */

    2. 全局中禁用
      打开eslintrc.js文件
      在rules下面加上禁用的规则,例如
      rules: {
      'space-before-function-paren': 'off'
      }
      修改规则后需要重启服务npm run dev

    相关文章

      网友评论

          本文标题:eslint禁用规则

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