flake8-variables-names
flake8-variables-names copied to clipboard
A flake8 extension that helps to make more readable variables names
**Is your feature request related to a problem? Please describe.** When multiple execution contexts are defined (e.g. dev-env, pre-commit, CI), it will be nice to have a SSOT (https://en.wikipedia.org/wiki/Single_source_of_truth) of...
**Describe the bug** When assigning several single char variables on a single line (from a tuple for example), the VNE001 error is NOT raised. **To Reproduce** Steps to reproduce the...
Now blacklists are builtin, they should be configured.
Try to guess boolean variable and check if it starts with scecified prefixes (eg. `is_`/`has_`).
Write script, that analyze 200+ python repos, extracts varnames from the sources, output top to console and check if there are bad names.
First of all, thank you for a great plugin! I've also been using flake8-builtins in my regular plugin set for quite some time, it solves one specific problem for it....
Fix issue with underscore variable name. ```python def foo(bar: str) -> None: print(bar) for _ in range(10): #