gulp编译ishintrc校验异常

  • Expected '===' and instead saw '=='

等号使用错误

方法一:将提示的代码行中的双等号‘==’改为三等号‘===’

方法二:.jshintrc文件设置eqeqeq,将三等号校验关闭

// Prohibit use of == and != in favor of === and !==.
  "eqeqeq": false,
  • Expected '!==' and instead saw '!='

方法一:将提示的代码行中的双等号‘!=’改为三等号‘!==’

方法二:.jshintrc文件设置eqeqeq,将三等号校验关闭

  • 'alert' is not defined

alert()换成 window.alert()

  • 'xxx' is defined but never used

参数没有被使用,删掉就好。

  •  Line is too long

方案一:代码行过长,适当换行即可。

方案二:.jshintrc文件将设置maxlen最大长度

  // Enforce line length to 100 characters
  "maxlen": 200,

上一篇:gulp相关


下一篇:laya官网留的坑之高效开发工作流