Jendrik Seipp
Jendrik Seipp
Interesting. Is this project about changing Pyflakes, Vulture, or both? I suppose the added functionality for pyflakes can be seen in the test cases you added in the POC. Could...
I am quite reluctant about making Vulture depend on Pyflakes since external dependencies usually incur a lot of extra maintenance cost. This is even worse when depending on the internal...
Thanks for the report! Ideally, I'd like to find a solution that works for multiple editors. Do you know which format would be required for other popular editors (https://insights.stackoverflow.com/survey/2019#development-environments-and-tools)? Are...
I'm not opposed to adding such functionality. However, I'm not yet convinced that such a feature is useful. Your example @jamilraichouni would ignore unused arguments for *all* functions (assuming that...
Could you provide an example, please?
This sounds like a good fit for a whitelist. If you like, we can try to integrate your whitelist for flask or flask-restful into Vulture. See the whitelists directory for...
Actually, i think it's good to use "real" source code in whitelists. That way, we can test that the names really exist and are spelled correctly. The whitelist files that...
I agree. In my projects that use Vulture I simply run `python whitelist.py` to check that all whitelisted code still exists. Does that work for you as well? Care to...
In such a case, I'd use `_bar`. That's a common idiom for unused arguments.
Python won't complain that the parameter name differs from the method in the base class since it only looks at method names, not their parameters.