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:13:02 -0500
commit9be44b8ee3d9d64c170072b394b0d4f7417ba24d (patch)
treedb58187dad699d4743ab9242240f2096dc349549 /setup.cfg
parent9b7d512d5fb88844d920929b3cbb9d6c38b8b891 (diff)
[1.7.x] Added new "W503 line break before binary operator" warning to flake8 ignore.
Backport of d652906aebd34d9ba943507ce0c3a7be169fab7c from master
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 c8d911f3ad..ddea5299a5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@ install-script = scripts/rpm-install.sh
[flake8]
exclude=build,.git,./django/utils/dictconfig.py,./django/contrib/comments/*,./django/utils/unittest.py,./django/utils/lru_cache.py,./tests/comment_tests/*,./django/test/_doctest.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner
-ignore=E123,E128,E265,E266,E402,E501,E731,W601
+ignore=E123,E128,E265,E266,E402,E501,E731,W503,W601
max-line-length = 119
[metadata]