如何让 Closure Compiler 报告所有警告?
How can I get Closure Compiler to report all warnings?
Closure Compiler 文档说 "But even --warning_level=VERBOSE doesn't give you all the warnings that Closure Compiler can emit"。我想要它们,就此而言,我希望 --jscomp_error= 报告任何警告的错误。
根据 https://github.com/google/closure-compiler/wiki/Warnings 上的文档,我不确定我应该做什么。我是否为列出的每种类型包含多个 --jscomp,或者是否有确保我没有遗漏任何内容的捷径?
你要么:
- 为每种类型指定
--jscomp_error
个标志。当您 运行 带有 --help
标志的编译器时,会显示该列表。
- 自定义构建编译器。
Closure Compiler 文档说 "But even --warning_level=VERBOSE doesn't give you all the warnings that Closure Compiler can emit"。我想要它们,就此而言,我希望 --jscomp_error= 报告任何警告的错误。
根据 https://github.com/google/closure-compiler/wiki/Warnings 上的文档,我不确定我应该做什么。我是否为列出的每种类型包含多个 --jscomp,或者是否有确保我没有遗漏任何内容的捷径?
你要么:
- 为每种类型指定
--jscomp_error
个标志。当您 运行 带有--help
标志的编译器时,会显示该列表。 - 自定义构建编译器。