如何配置JSHint以忽略此错误:With Worksheets("Data1") '<--| change "Data1" to your actual name of existing sheet where to paste data into
.UsedRange.ClearContents
Worksheets(1).UsedRange.Copy .Range("A1")
End With
?\
我的代码是,
Use '===' to compare with 'true'
如果if (something == true){
//code
}
为something
或1
,我希望条件通过。我得到的第一个错误是true
。因此,我在Expected '===' and instead saw '=='
条件之上添加了/*jslint eqeq: true*/
条评论。之后我得到了上面提到的错误。如何抑制这两个错误?
编辑:
将条件从if
更改为if (something == true)
可以解决问题,但我不想编辑条件。无论如何都要在不改变条件的情况下抑制错误吗?