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 17da5cb commit e4b18c8Copy full SHA for e4b18c8
pyproject.toml
@@ -163,10 +163,11 @@ ignore = [
163
"D103",
164
"D105",
165
"D107",
166
+ "D203", # incorrect-blank-line-before-class (incompatible with D211)
167
+ "D213", # multi-line-summary-second-line (incompatible with D212)
168
"S101",
169
"S603",
170
"S607",
- "ANN101",
171
"COM812",
172
"FIX002",
173
"PLR0912",
@@ -191,6 +192,9 @@ classmethod-decorators = [
191
192
"pydantic.validator",
193
]
194
195
+[tool.ruff.lint.isort]
196
+split-on-trailing-comma = false
197
+
198
[tool.ruff.format]
199
docstring-code-format = true
200
skip-magic-trailing-comma = true
0 commit comments