本文介绍了Js提示 - 隐藏此消息:ES5选项现在默认设置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  ES5选项现在按默认值设置

如何删除它?

解决方案

它只是告诉你它是默认的,所以你不需要添加它作为一个选项。查看.jshintrc文件并删除es5:true




I'm using gulp-jshint, and the following error message is annoying:

ES5 option is now set per default

How can I remove it?

解决方案

It's just telling you that it is the default so you don't need to add it as an option. Look in the .jshintrc file and remove "es5": true.

http://jslinterrors.com/es5-option-is-now-set-per-default

这篇关于Js提示 - 隐藏此消息:ES5选项现在默认设置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 00:23