Skip to content

Commit 65e48d3

Browse files
committed
fix(pyproject.toml): add tool.ruff.lint.mccabe
1 parent 177ec46 commit 65e48d3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ lint.ignore = [
104104
"D106", # Missing docstring in public nested class
105105
]
106106
exclude = [".venv/"]
107-
lint.mccabe = { max-complexity = 10 }
107+
108+
[tool.ruff.lint.mccabe]
109+
max-complexity = 10
108110

109111
[tool.ruff.lint.per-file-ignores]
110112
"tests/*" = [

0 commit comments

Comments
 (0)