Ignoring a line for pylint and Flake8 at the same time

Viewed 109

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?

1 Answers

both of these combinations work for me:

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