Open NoamNol opened 2 years ago
Not wanting to activate this except in very particular occasion makes sense, I would merge a fix for that.
Ah so this is a bit tricky - it's "forced" on for prospector to gather information, see https://github.com/PyCQA/prospector/blob/master/prospector/tools/pylint/__init__.py#L70
It should however not be emitted later if disabled elsewhere, only used internally.
I will look into this.
I have .pylintrc file in my project, and when I run prospector I get
pylint - locally-disabled
warnings about every# pylint: disable=some-rule
comment in the code.To fix it I need to add
disable=locally-disabled
to .pylintrc.To Reproduce In mac:
To fix:
Expected behavior No warning when using
# pylint: disable=some-rule
.Environment:
Additional context