summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-11-14 18:22:39 -0500
committerTim Graham <timograham@gmail.com>2016-11-14 18:26:50 -0500
commit0ed5c94156c0434cbc28dc9ed1c5119659a09f36 (patch)
tree18390a1466aad4e4acfcc56856a77e472b5914ae
parenta3fa2c463122974460adcab91defb479841de745 (diff)
[1.9.x] Ignored flake8's newly added E305, E741, E743.
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 9ba33169ae..fc8350eeae 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,tests/view_tests/tests/py3_test_debug.py,tests/template_tests/annotated_tag_function.py
-ignore = E123,E128,E402,W503,E731,W601
+ignore = E123,E128,E305,E402,W503,E731,E741,E743,W601
max-line-length = 119
[isort]