Skip to content

Commit

Permalink
Add too-many-positional-arguments to ignore list for pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
FanwangM committed Oct 17, 2024
1 parent bf2ef76 commit 41867b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ disable = [
"no-else-return",
"no-member",
"too-many-branches",
"too-many-positional-arguments",
]

[tool.pylint."MASTER"]
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ disable=
# Used when a name doesn't doesn't fit the naming convention associated to its type
# (constant, variable, class…).
C0103,
# Used when too many positional arguments are given in a function call.
R0917,

[SIMILARITIES]
min-similarity-lines=5
Expand Down

0 comments on commit 41867b7

Please sign in to comment.