We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df039bf commit 6c71dcfCopy full SHA for 6c71dcf
1 file changed
pyproject.toml
@@ -127,6 +127,7 @@ extend-exclude = ["README.md"]
127
select = [
128
"C4", # flake8-comprehensions
129
"C90", # mccabe
130
+ "D212", # pydocstyle: multi-line docstring summary should start at the first line
131
"E", # pycodestyle
132
"F", # pyflakes
133
"I", # isort
@@ -135,7 +136,9 @@ select = [
135
136
"UP", # pyupgrade
137
]
138
ignore = ["PERF203", "PLC0415", "PLR0402"]
-mccabe.max-complexity = 24 # Default is 10
139
+
140
+[tool.ruff.lint.mccabe]
141
+max-complexity = 24 # Default is 10
142
143
[tool.ruff.lint.per-file-ignores]
144
"__init__.py" = ["F401"]
0 commit comments