1
0
mirror of https://github.com/django/django.git synced 2025-08-25 19:29:14 +00:00

Removed reference to flake8 file exclusions.

Obsolete since 41384812efe209c8295a50d78b45e0ffb2992436.
(six was removed in 9285926295fbfc86b70e7be8d595d4cfbe7895b8.)
This commit is contained in:
Jacob Walls 2025-08-23 14:01:00 -04:00 committed by GitHub
parent 836894f27a
commit 165ad74c57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,11 +46,9 @@ Python style
* Unless otherwise specified, follow :pep:`8`. * Unless otherwise specified, follow :pep:`8`.
Use :pypi:`flake8` to check for problems in this area. Note that our Use :pypi:`flake8` to check for problems in this area. Note that our
``.flake8`` file contains some excluded files (deprecated modules we don't ``.flake8`` file excludes some errors that we don't consider as gross
care about cleaning up and some third-party code that Django vendors) as well violations. Remember that :pep:`8` is only a guide, so respect the style of
as some excluded errors that we don't consider as gross violations. Remember the surrounding code as a primary goal.
that :pep:`8` is only a guide, so respect the style of the surrounding code
as a primary goal.
An exception to :pep:`8` is our rules on line lengths. We allow up to 88 An exception to :pep:`8` is our rules on line lengths. We allow up to 88
characters in code, as this is the line length used by ``black``. characters in code, as this is the line length used by ``black``.