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?