Skip to content

Commit 8344a09

Browse files
committed
Comment on ruff rules
1 parent 5de3744 commit 8344a09

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ select = [ # https://beta.ruff.rs/docs/rules
5454
"TID", # TID: tidy imports
5555
"UP", # UP: pyupgrade
5656
"W", # W: pycodestyle warnings
57-
"YTT", # YTT: Year Two Thousand
57+
"YTT", # YTT: year 2020
5858
]
5959
target-version = "py311"
6060

6161
[tool.ruff.mccabe] # DO NOT INCREASE THIS VALUE
6262
max-complexity = 20 # default: 10
6363

6464
[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
65+
max-args = 10 # default: 5
66+
max-branches = 20 # default: 12
67+
max-returns = 8 # default: 6
6868
max-statements = 88 # default: 50

0 commit comments

Comments
 (0)