I would like to ignore a specific line in static code analysis.
For Flake8, I'd use the syntax # noqa: F401.
For pylint, I'd use the syntax # pylint: disable=unused-import.
As I am working on a code generation framework, I would like the code to support both linters. Is there a way to combine both directives such that both of them are correctly detected?
both of these combinations work for me:
import os # noqa: F401 # pylint:disable=unused-import
import sys # pylint:disable=unused-import # noqa: F401
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With