Skip to content

Commit 1596aca

Browse files
committed
Increase max-statements to 102 (default is 50)
1 parent ed78d50 commit 1596aca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ mccabe.max-complexity = 24 # Default is 10
115115

116116
[tool.ruff.lint.pylint]
117117
allow-magic-value-types = ["bytes", "float", "int", "str"]
118-
max-args = 20 # Default is 5
119-
max-branches = 23 # Default is 12
118+
max-args = 20 # Default is 5
119+
max-branches = 23 # Default is 12
120120
max-returns = 13 # Default is 6
121-
max-statements = 99 # Default is 50
121+
max-statements = 102 # Default is 50
122122

123123
[tool.uv.workspace]
124124
members = ["examples/servers/*"]

0 commit comments

Comments
 (0)