Carl Crowder
Carl Crowder
I have run into the same problem. I can't speak for @MirkoDziadzka but my problem comes from a non-utf-8 encoded file. Specifically this line of this file: https://github.com/carlio/Pillow/blob/master/PIL/WalImageFile.py#L78 which is...
Same issue for me, with: Host: Windows 10 Pro version 21H1 Virtualbox: Version 6.1.22 r144080 (Qt5.6.2) Switching from VMSVGA -> VboxSVGA fixed the issue.
Could you try with `1.8.0rc1` ? The 1.8 release contains a big rewrite of finding files and deciding which ones to check, it hopefully will have also fixed this (though...
I think this makes sense, as long as the checker uses a new error code then people can filter that out by ignoring it in their pylint config. I certainly...
I do still feel like it represents a code smell that should be highlighted, but not as a high severity error just as a warning. But perhaps I'm just pernickety.
This kind of logic is handled here https://github.com/PyCQA/prospector/blob/master/prospector/suppression.py - so adding some extra directives might be enough. This is also a little bit related to the logic in the postfilter...
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...
The autodetect works by searching for references to Django in the requirements, or any imports - https://github.com/PyCQA/prospector/blob/master/prospector/autodetect.py#L19
I suspect this is pylint-django enforcing Django these days though.
It could be done in pylint-django, the best thing to do I would say is to add a [transform](https://github.com/PyCQA/pylint-django/tree/master/pylint_django/transforms) to convert properties of `models.TextChoices` classes to some faked class. Though...