如何忽略某个 WebStorm 检查错误?

How can I ignore a certain WebStorm inspection error?

以下尝试无效:

/* tslint:disable:"no-unused-variable" */

/* tslint:disable:'no-unused-variable' */

/* tslint:disable:no-unused-variable */

也许 Webstorm 有其他 linting 机制在后台运行?我怎样才能禁用它们,以便只有 tslint 处于活动状态?

编辑:理想的解决方案是在源代码级别执行此操作,无需配置任何 IDE 设置。

此警告并非来自 TSLint,因此配置 TSLint 在这里无济于事。这是 WebStorm 自己检查错误。您可以禁用此检查或抑制当前语句:在 'isDone' 上按 Alt+Enter,然后按 Right 并从弹出窗口中选择适当的操作。参见 https://www.jetbrains.com/help/webstorm/2016.1/suppressing-inspections.html#1

你可以用

//noinspection JSUnusedGlobalSymbols

在 Webstorm 版本 2016.3

为了获取此代码,我使用了:

ALT + Enter
Select "Remove unused constant 'xxx'" but dont Enter
Arrow right
Suppress for statement