Ignore venv files for PEP checking

This commit is contained in:
Oliver Walters 2019-12-05 23:05:28 +11:00
parent ee063f7508
commit 000229fcbb

View File

@ -6,5 +6,5 @@ ignore =
E501, E722,
# - C901 - function is too complex
C901,
exclude = .git,__pycache__,*/migrations/*
exclude = .git,__pycache__,*/migrations/*,*/lib/*,*/bin/*
max-complexity = 20