Skip to content

Commit 0670d09

Browse files
[pylint] Disable too-few-public-methods globally
1 parent 33743c3 commit 0670d09

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ use_parentheses = true
7474
line_length = 120
7575

7676
[tool.pylint.main]
77-
disable = ["missing-docstring","too-many-branches","too-many-return-statements","too-many-ancestors","fixme"]
77+
disable = [
78+
"missing-docstring",
79+
"too-many-branches", "too-many-return-statements", "too-many-ancestors",
80+
"too-few-public-methods",
81+
"fixme",
82+
]
7883
ignore="tests"
7984
max-line-length = 120

0 commit comments

Comments
 (0)