mirror of
https://github.com/django/django.git
synced 2025-11-20 03:30:00 +00:00
Some checks failed
Tests / JavaScript tests (push) Waiting to run
Linters / flake8 (push) Waiting to run
Linters / isort (push) Waiting to run
Linters / black (push) Waiting to run
Tests / Windows, SQLite, Python 3.13 (push) Waiting to run
Docs / docs (push) Has been cancelled
Docs / blacken-docs (push) Has been cancelled
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.
10 lines
297 B
INI
10 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
|