Remove rules we want to enforce or are unnecessary with our style

This commit is contained in:
Alex Stokes 2019-08-03 12:41:52 -07:00 committed by Kevin Mai-Husan Chia
parent a8acbb72c2
commit 03b1304fe7

View File

@ -8,7 +8,7 @@ envlist =
[flake8]
max-line-length = 100
exclude = *_pb2*.py
ignore = E203, E266, E501, W503
ignore = E203, W503
max-complexity = 18
select = B,C,E,F,W,T4,B9