We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/ambv/black
To do:
black
black --check .
While we're at it, make lint can go in the pre-commit hooks too, if the CI's going to fail on it.
make lint
The text was updated successfully, but these errors were encountered:
Shell one-liner to see if python is modern enough to run black
python -c "import platform, sys; sys.exit(tuple(int(v) for v in platform.python_version().split('.')) < (3,6))"
N.B. probably better to just have pip install black where appropriate and then have make lint do black && black --check .
pip
black && black --check .
Sorry, something went wrong.
No branches or pull requests
https://github.com/ambv/black
To do:
black
to dev requirementsblack --check .
to the tox config for python 3.6+black
in appropriate environments and warning users developing in an inappropriate environmentWhile we're at it,
make lint
can go in the pre-commit hooks too, if the CI's going to fail on it.The text was updated successfully, but these errors were encountered: