Skip to content

Commit

Permalink
Increase ruff max branches, statements and complexity for report().
Browse files Browse the repository at this point in the history
  • Loading branch information
devdanzin committed Oct 28, 2023
1 parent 5cfcc75 commit f57006e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,12 @@ target-version = "py37"
known-local-folder = ["wily"]

[tool.ruff.mccabe]
max-complexity = 24
max-complexity = 26

[tool.ruff.per-file-ignores]
"test/*" = ["D"]

[tool.ruff.pylint]
max-args = 12
max-branches = 35
max-statements = 100
max-branches = 37
max-statements = 105

0 comments on commit f57006e

Please sign in to comment.