Skip to content

Commit

Permalink
chore: add suggestion mode to pylint settings, and silence the “too m…
Browse files Browse the repository at this point in the history
…any try statements” checker
  • Loading branch information
jenstroeger committed Oct 1, 2024
1 parent 6ef2447 commit 434b176
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,9 @@ ignore_missing_imports = true
# https://pylint.pycqa.org/en/latest/user_guide/configuration/index.html
[tool.pylint.MASTER]
fail-under = 10.0
suggestion-mode = true
load-plugins = [
]
disable = [
"fixme",
"line-too-long", # Replaced by Flake8 Bugbear B950 check.
Expand All @@ -218,15 +221,16 @@ disable = [
"too-many-arguments",
"too-many-boolean-expressions",
"too-many-branches",
"too-many-function-args",
"too-many-instance-attributes",
"too-many-lines",
"too-many-locals",
"too-many-nested-blocks",
"too-many-positional-arguments",
"too-many-public-methods",
"too-many-return-statements",
"too-many-statements",
"too-many-function-args",
"too-many-positional-arguments",
"too-many-try-statements",
"duplicate-code",
]

Expand Down

0 comments on commit 434b176

Please sign in to comment.