mirror of
https://github.com/django/django.git
synced 2025-09-17 22:49:35 +00:00
Set flake8 max-doc-length to 79 to enforce smaller line length limit on docstrings and comments (per coding-style docs). Updated docs to clarify both requirements are enforced by flake8 and to remove some leftover language from the pre-black era.
11 lines
297 B
INI
11 lines
297 B
INI
[flake8]
|
|
exclude = build,.git,.tox,./tests/.env
|
|
extend-ignore = E203
|
|
max-line-length = 88
|
|
max-doc-length = 79
|
|
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
|