Skip to content

Commit 12f309f

Browse files
[ruff] Activate ruff's pylint messages
1 parent 05ccb0a commit 12f309f

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

pylint_django/augmentations/__init__.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -366,12 +366,11 @@ class ModelB(models.Model):
366366
# if this is a X_set method, that's a pretty strong signal that this is the default
367367
# Django name, rather than one set by related_name
368368
quack = True
369-
else:
370-
# we will
371-
if isinstance(node.parent, Attribute):
372-
func_name = getattr(node.parent, "attrname", None)
373-
if func_name in MANAGER_ATTRS:
374-
quack = True
369+
# we will
370+
elif isinstance(node.parent, Attribute):
371+
func_name = getattr(node.parent, "attrname", None)
372+
if func_name in MANAGER_ATTRS:
373+
quack = True
375374

376375
if quack:
377376
children = list(node.get_children())
@@ -522,7 +521,7 @@ def _attribute_is_magic(node, attrs, parents):
522521
try:
523522
for cls in node.last_child().inferred():
524523
if isinstance(cls, Super):
525-
cls = cls._self_class # pylint: disable=protected-access
524+
cls = cls._self_class # pylint: disable=protected-access # noqa:PLW2901
526525
if node_is_subclass(cls, *parents) or cls.qname() in parents:
527526
return True
528527
except InferenceError:

pylint_django/checkers/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class ModelChecker(BaseChecker):
7979
msgs = MESSAGES
8080

8181
@check_messages("model-missing-unicode")
82-
def visit_classdef(self, node):
82+
def visit_classdef(self, node): # noqa: PLR0911
8383
"""Class visitor."""
8484
if not node_is_subclass(node, "django.db.models.base.Model", ".Model"):
8585
# we only care about models

pyproject.toml

+8-1
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,22 @@ lint.select = [
7474
"I", # isort
7575
"PGH004", # pygrep-hooks - Use specific rule codes when using noqa
7676
"PIE", # flake8-pie
77+
"PLC", # pylint convention
78+
"PLE", # pylint error
79+
"PLR", # pylint refactor
7780
"PLR1714", # Consider merging multiple comparisons
81+
"PLW", # pylint warning
7882
"PYI", # flake8-pyi
7983
"RUF", # ruff
8084
"T100", # flake8-debugger
8185
"UP", # pyupgrade
8286
"W", # pycodestyle
8387
]
8488
lint.ignore = [
85-
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
89+
"PLR0912", # Too many branches, worse than C901
90+
"PLR0915", # Too many statements, worse than C901
91+
"PLR2004", # Magic value used in comparison, opinionated
92+
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
8693
]
8794

8895
[tool.isort]

0 commit comments

Comments
 (0)