summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-02-15 20:07:22 -0500
committerTim Graham <timograham@gmail.com>2015-02-15 20:07:22 -0500
commitd652906aebd34d9ba943507ce0c3a7be169fab7c (patch)
tree3fe5630516ca4cc896c95f1bbf3017f20f7103d2 /setup.cfg
parent15b711b5ee9ce1ddd01cf88b2bbbec4a6cbec648 (diff)
downloaddjango-d652906aebd34d9ba943507ce0c3a7be169fab7c.tar.gz
Added new "W503 line break before binary operator" warning to flake8 ignore.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index dd81b1f8c9..8b6613b5c5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@ install-script = scripts/rpm-install.sh
[flake8]
exclude=build,.git,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner
-ignore=E123,E128,E402,E501,E731,W601
+ignore=E123,E128,E402,E501,W503,E731,W601
max-line-length = 119
[isort]