summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorCarlton Gibson <carlton.gibson@noumenal.es>2022-02-02 11:36:57 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-07 20:36:04 +0100
commitba94488196a74e312177ef2621fbd427956836ef (patch)
tree7eaf76d66ff1592780deff589d6ee825b660be23 /setup.cfg
parent6f185a53a2a7acad0ad8383267942d554527688a (diff)
downloaddjango-ba94488196a74e312177ef2621fbd427956836ef.tar.gz
Refs #33476 -- Adjusted docs and config files for Black.
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg14
1 files changed, 8 insertions, 6 deletions
diff --git a/setup.cfg b/setup.cfg
index d20e8dfd1f..d8aaee4ce1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -57,13 +57,15 @@ install_script = scripts/rpm-install.sh
[flake8]
exclude = build,.git,.tox,./tests/.env
-ignore = W504,W601
-max-line-length = 119
+extend-ignore = E203
+max-line-length = 88
+per-file-ignores =
+ django/core/cache/backends/filebased.py:W601
+ django/core/cache/backends/base.py:W601
+ django/core/cache/backends/redis.py:W601
+ tests/cache/tests.py:W601
[isort]
-combine_as_imports = true
+profile = black
default_section = THIRDPARTY
-include_trailing_comma = true
known_first_party = django
-line_length = 79
-multi_line_output = 5