gunicorn/.pylintrc
Benoit Chesneau 1dc4ce9d59
Update to support only Python 3.12 and 3.13 (#3422)
* Update CI and project to support only Python N (3.13) and N-1 (3.12)

- Update GitHub Actions workflows to test only Python 3.12 and 3.13
- Update pyproject.toml to require Python >= 3.12
- Update tox.ini to test only py312 and py313
- Update documentation to reflect Python 3.12+ requirement
- Clean up AppVeyor configuration for Python 3.12
* Update pylint to 3.3.2 for Python 3.12 compatibility
* Disable new pylint warnings for pre-existing issues
2025-10-05 19:55:32 +02:00

60 lines
1.2 KiB
INI

[MASTER]
ignore=
build,
docs,
examples,
scripts,
_compat.py,
_gaiohttp.py,
[MESSAGES CONTROL]
disable=
attribute-defined-outside-init,
bad-mcs-classmethod-argument,
bare-except,
broad-except,
cyclic-import,
duplicate-bases,
duplicate-code,
eval-used,
fixme,
import-error,
import-outside-toplevel,
import-self,
inconsistent-return-statements,
invalid-name,
missing-docstring,
no-else-return,
no-member,
no-self-argument,
no-staticmethod-decorator,
not-callable,
possibly-used-before-assignment,
protected-access,
raise-missing-from,
redefined-outer-name,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-positional-arguments,
too-many-public-methods,
too-many-statements,
used-before-assignment,
wrong-import-position,
wrong-import-order,
ungrouped-imports,
unused-argument,
useless-object-inheritance,
useless-import-alias,
comparison-with-callable,
try-except-raise,
consider-using-with,
consider-using-f-string,
unspecified-encoding