Skip to content

Commit

Permalink
Put pylint config in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
LennP committed Oct 8, 2024
1 parent 300f032 commit 3d59de3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 21 deletions.
20 changes: 0 additions & 20 deletions pylintrc

This file was deleted.

26 changes: 25 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
[tool.black]
line-length = 79
line-length = 79

[tool.pylint]
disable = [
"invalid-name",
"protected-access",
"broad-except",
"bare-except",
"abstract-method",
"duplicate-code",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-lines",
"too-many-locals",
"too-many-positional-arguments",
"too-many-public-methods",
"too-many-return-statements",
"too-many-statements",
"unused-argument"
]

[tool.pylint.master]
reports = false

0 comments on commit 3d59de3

Please sign in to comment.