Ashley Whetter
Ashley Whetter
In your example how will we know what is a project level override and what is a directory level override? I'm actually drifting more towards looking for pylintrc overrides on...
So Rubocop has quite an elegant solution. It will find the first configuration file in the directory chain, but within the config file you can choose to include a configuration...
I started the implementation of this but I felt like I was really shoehorning the code into what already there. So instead I need to do some refactoring in the...
I'm going to start work on #972. I think this going to require me figuring out how it's working at the moment and then we can plan a better solution....
Just tagging in #1554 which has a reasonable use case for wanting instant feedback from pylint. This wouldn't be easy/possible with two stage checking.
If anyone does want to help out with this, there is now a project set up that shows what tasks need to be done (https://github.com/PyCQA/pylint/projects/1). I've made issues for everything...
Looking for a .git/.hg directory seems reasonable to me. I did think about looking for other project files that usually live at the root, but most a redundant now because...
If it's a rare enough case that the recommendation should be to package it more like a multi-file package then that seems reasonable to me too. PEP-561 does allude to...
The `DistInfoDistribution.requires()` (the class that pip returns from `get_installed_distributions()`) takes an `extras` argument to specify which extras to query for requirements. ```python from pip._internal.utils.misc import get_installed_distributions help(get_installed_distributions()[13].requires) ``` Each `Requirement`...
> If we do choose to break backwards compatibility, we need to consider what should happen if you e.g. launch Maya and have 5 UIs written with Qt.py 1.0 and...