diff --git a/setup.cfg b/setup.cfg index 755fe22c..f76ade04 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,8 @@ [pycodestyle] -ignore=E501,W503 +# E501: Line too long (80 chars) +# W503: Line break occurred before a binary operator +# E261: At least two spaces before inline comment +ignore=E501,W503,E261 max-line-length = 120 exclude=.git,settings,migrations,license_manager/static,bower_components,license_manager/wsgi.py