Claudiu Popa

Results 107 comments of Claudiu Popa

Thanks for the comment @xNinjaKittyx ! I removed that from the list, it's definitely not an authoritative list, since the issue was created long time ago. We'd definitely need to...

This sounds like it might be useful and it's a topic that is reoccurring from time to time. After a short look it seems this is possible with [rubocop](https://rubocop.readthedocs.io/en/latest/configuration/) and...

The variable is assigned once but as long as it is a `Const` in astroid's parlance (that is string, numbers, floats, bools), `pylint` asks you to use the UPPER_CASE style...

Thanks for the additional examples. Something is definitely inconsistent with this check. In the latter examples you gave, pylint cannot fully infer that the variable is a constant or not,...

Indeed, this is definitely problematic, which is one of the reasons we will try to switch to other parsers in https://github.com/PyCQA/astroid/issues/329. Right now I think that trying to fine tune...

Doesn't sound too bad to me, but unfortunately I won't have time for this quite soon.

No, no one is working currently on this issue, feel free to take a stab at it. But this issue is about introducing support for configurations per subdirectories, which might...

Hi @AWhetter There are two major issues with implementing this feature, as far as I can tell: 1. deciding how the config files are loaded, where they leave and the...

So you're saying that we could support the following protocol for a configuration: 1. global configuration somewhere 2. per project configuration that can patch the settings of the global configuration....