Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add too-many-positional-arguments to ignore list for pylint #214

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add too-many-positional-arguments to ignore list for pylint
FanwangM committed Oct 17, 2024

Verified

This commit was signed with the committer’s verified signature.
commit 41867b799c80104639271927e6d8e2670020f324
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -284,6 +284,7 @@ disable = [
"no-else-return",
"no-member",
"too-many-branches",
"too-many-positional-arguments",
]

[tool.pylint."MASTER"]
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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