Created
July 31, 2018 21:49
-
-
Save barrachri/e990eed87838e78df6d07b36e9cd9338 to your computer and use it in GitHub Desktop.
This file contains 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] | |
ignore = E265,E501,D203 | |
max-line-length = 100 | |
max-complexity = 10 | |
inline-quotes = double | |
exclude = | |
.tox, | |
.git, | |
__pycache__, | |
docs/source/conf.py, | |
build, | |
dist, | |
tests/fixtures/*, | |
*.pyc, | |
*.egg-info, | |
.cache, | |
.eggs | |
[isort] | |
multi_line_output=3 | |
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER | |
include_trailing_comma=True | |
line_length=60 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment