我正在使用jshint來監視我的代碼質量,但我想將不同的規則/選項應用於我的代碼的不同部分。我可以在功能級別設置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
}
是的,正如您發現的那樣,它會按照您的建議工作!我相信功能在[文檔](http://jshint.com/docs/)中有詳細介紹。 – 2013-02-13 14:36:11