如何使用闭包编译器@suppress多个警告?
可以使用 Google 的 Closure 编译器通过 @suppress
注释。但是,似乎不可能同时抑制多个警告 - 例如 globalThis
和 checkVars
警告。我尝试了这两种方法
/**
* @fileoverview
* @suppress {globalThis checkVars}
*/
,
/**
* @fileoverview
* @suppress {globalThis,checkVars}
*/
但都导致 @suppress
注释被忽略。多个 @suppress
行也不起作用。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用竖线字符分隔类型(例如:“|”)。
Separate the types with the pipe character (eg: '|').