Is it possible to disable specific message in pylint?

237 Views Asked by At

I'm trying to disable a specific warning w0611 ("Unused import %s") using pylintrc.

But I don't want to disable all warnings of that type, but only the one: "Unused import __fixer__". I used this import in a way that pylint doesn't understand and I want to keep that import.

W:  6, 0: Unused import __fixer__ (unused-import)

How can I disable this specific warning in the pylintrc. Is it possible?

0

There are 0 best solutions below