Created
August 15, 2022 18:32
-
-
Save agucova/f57f99c643ea22290d2c5f16110be515 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[flake8] | |
max-line-length = 88 | |
extend-ignore = E203, W503, E501 | |
exclude = | |
# No need to traverse our git directory | |
.git, | |
# There's no value in checking cache directories | |
__pycache__, | |
# This contains our built documentation | |
build, | |
# This contains builds of flake8 that we don't want to check | |
dist | |
max-complexity = 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment