We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5de3744 commit 8344a09Copy full SHA for 8344a09
pyproject.toml
@@ -54,15 +54,15 @@ select = [ # https://beta.ruff.rs/docs/rules
54
"TID", # TID: tidy imports
55
"UP", # UP: pyupgrade
56
"W", # W: pycodestyle warnings
57
- "YTT", # YTT: Year Two Thousand
+ "YTT", # YTT: year 2020
58
]
59
target-version = "py311"
60
61
[tool.ruff.mccabe] # DO NOT INCREASE THIS VALUE
62
max-complexity = 20 # default: 10
63
64
[tool.ruff.pylint] # DO NOT INCREASE THESE VALUES
65
-max-args = 10 # default: 5
66
-max-branches = 20 # default: 12
67
-max-returns = 8 # default: 6
+max-args = 10 # default: 5
+max-branches = 20 # default: 12
+max-returns = 8 # default: 6
68
max-statements = 88 # default: 50
0 commit comments