添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

Derived from the pygrep-hooks linter.

What it does #

Check for type: ignore annotations that suppress all type warnings, as opposed to targeting specific type warnings.

Why is this bad? #

Suppressing all warnings can hide issues in the code.

Blanket type: ignore annotations are also more difficult to interpret and maintain, as the annotation does not clarify which warnings are intended to be suppressed.

Example #