如何使用闭包编译器@suppress多个警告?

问题描述 投票:0回答:1

可以通过 Google 的 Closure 编译器通过

@suppress
注释 来抑制每个文件的警告。 但是,似乎不可能同时抑制多个警告 - 例如
globalThis
checkVars
警告。 我都试过了

/**
 * @fileoverview
 * @suppress {globalThis checkVars}
 */

/**
 * @fileoverview
 * @suppress {globalThis,checkVars}
 */

但两者都会导致

@suppress
注释被忽略。 多条
@suppress
线也不起作用。

compiler-warnings google-closure-compiler suppress-warnings
1个回答
13
投票

用竖线字符分隔类型(例如:'|')。

/**
 * @fileoverview
 * @suppress {globalThis|checkVars}
 */
© www.soinside.com 2019 - 2024. All rights reserved.