jshint: {
files: [
'src/js/*.js',
'Gruntfile.js'
],
options: {
jshintrc: '.jshintrc',
devel:true
}
},
如何在jshint中关闭该警报错误?我想要关闭那个愚蠢的功能!如果可能的话#34;使用严格的"太烦人了..
答案 0 :(得分:0)
有一种方法,看here。
这是一个小片段:
// Code here will be linted with JSHint.
/* jshint ignore:start */
// Code here will be ignored by JSHint.
/* jshint ignore:end */
您也可以忽略带有跟踪注释的单行,如下所示:
ignoreThis(); // jshint ignore:line