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?
#
– Lorenelorens