It's possible to suppress warnings on a per-file basis with Google's Closure Compiler via the @suppress
annotation. However, it doesn't seem to be possible to suppress multiple warnings at the same time--for example the globalThis
and checkVars
warnings. I tried both
/**
* @fileoverview
* @suppress {globalThis checkVars}
*/
and
/**
* @fileoverview
* @suppress {globalThis,checkVars}
*/
but both result in the @suppress
annotation being ignored. Multiple @suppress
lines also do not work.
Separate the types with the pipe character (eg: '|').
/**
* @fileoverview
* @suppress {globalThis|checkVars}
*/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With