我正在处理的一些代码决定了各种变量的语法,因为我想让JSHint在文件的其余部分检查camel case,我忽略了它的一行,如下所示:
grant_type: 'password' // jshint ignore:line
但是,使用来自另一个StackOverflow问题的这种方法在IntelliJ IDEA(13.1.1)和执行grunt jshint
包含类似于以下内容的错误时均失败:
[L128:C0] W106: Identifier 'grant_type' is not in camel case. ? grant_type: 'password' // jshint ignore:line [L128:C45] E001: Bad option: 'ignore'. grant_type: 'password' // jshint ignore:line
在两种环境中应该采取什么措施来纠正这个问题?
将grunt-contrib-jshint更新为0.10.0
https://github.com/gruntjs/grunt-contrib-jshint/issues/122