I'd like there to be a configuration option to disable usages of # type: ignore and force developers to use error specific ignores, like # type: ignore[assignment,misc]
Pitch
Ignoring everything does not make sense and is prone to errors when something is to be refactored.
In my opinion, most ignores should also contain a comment why this ignore is used. Having specific errors is also helpful for these scenarios for visibility
Feature
I'd like there to be a configuration option to disable usages of
# type: ignore
and force developers to use error specific ignores, like# type: ignore[assignment,misc]
Pitch
Ignoring everything does not make sense and is prone to errors when something is to be refactored. In my opinion, most ignores should also contain a comment why this ignore is used. Having specific errors is also helpful for these scenarios for visibility