我正在使用 jshint 来监控我的代码质量,但我想对代码的不同部分应用不同的规则/选项。
特别是,有一个函数我有意且必须使用按位运算符。对于这个功能,我想设置/*jshint bitwise:false */
. 不过,对于我的其余代码,我想设置/*jshint bitwise:true */
. 除了将该函数拆分为另一个脚本文件之外,有没有办法做到这一点?我想它看起来像这样,但看起来这实际上不起作用。
/*jshint bitwise:true */ //not really needed since it's default
function whatever () {
// lots of code here
}
function uses_bitwise () {
/*jshint bitwise:false */
//bitwise code here
}