pythonpylintflake8

How to suppress a warning in one line for pylint and Flake8 at the same time


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?


Solution

  • both of these combinations work for me:

    import os  # noqa: F401 # pylint:disable=unused-import
    import sys  # pylint:disable=unused-import # noqa: F401