summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2018-10-24 09:13:13 +0200
committerTim Graham <timograham@gmail.com>2018-10-24 09:17:59 -0400
commit58d1e9aa8ab505912389e7cd019a6f21785ad4bf (patch)
treeb744c8ea4cea1e82708a6a32f755e9c7a70a6c95 /setup.cfg
parent641742528a8babbede92890bc0bef50a255c1bbb (diff)
downloaddjango-58d1e9aa8ab505912389e7cd019a6f21785ad4bf.tar.gz
Ignored flake8 W504 warnings.
W504 is mutually exclusive with W503 that we follow.
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 5b37a54c11..ce026e6f49 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@ install-script = scripts/rpm-install.sh
[flake8]
exclude = build,.git,.tox,./django/utils/six.py,./django/conf/app_template/*,./tests/.env
-ignore = W601
+ignore = W504,W601
max-line-length = 119
[isort]