A flake8 extension that checks for assignment and return in Python
Project description
no-assignment-and-return

A flake8 extension that checks for assignment and return in Python
A Flake8 lint based on Clippy's
let_and_return
and Microsoft's TSLint lint
no-unnecessary-local-variable
.
For more info on the structure of this lint, see the accompanying blog post.
examples
# error def foo(): x = bar() return x # allowed def foo(): x, _ = bar() return x
see: flake8_assign_and_return.py
for all the test cases
dev
# install dependencies poetry install # install plugin to work with flake8 poetry run python setup.py install # test poetry run pytest # or with watch poetry run ptw # typecheck poetry run mypy *.py # format poetry run black . # lint poetry run flake8 .
uploading a new version to PyPi
# increment `__version__` and pyproject.toml `version` # build new distribution files rm -rf dist && poetry run python setup.py sdist bdist_wheel # upload to pypi (Note: this will ask for login credentials) poetry run twine upload dist/*
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size flake8_assign_and_return-0.0.4-py3-none-any.whl (3.6 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size flake8-assign-and-return-0.0.4.tar.gz (3.2 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for flake8_assign_and_return-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 959fbcad1737cb68d4be96547a40d9b15e6501a29286b37509b9e73f3d387002 |
|
MD5 | 4adae8ea9c09f29c83da521e5aea6d41 |
|
BLAKE2-256 | b9027797c07976e548d65fe4aeaf32074f10603258a519fb9c61ea517021ac6e |
Close
Hashes for flake8-assign-and-return-0.0.4.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffd1cc6c21b0a786c44b445d188b646b3f17b33c2fe49649a5bd2ff735610721 |
|
MD5 | 0619c48d592c47fadcdc6a63dbc1bcf0 |
|
BLAKE2-256 | 119d9ae41189edfd9758b96e46d8a3c53aa2348c35992ced6ef4d87cfac00fb7 |