There was an error while loading. Please reload this page.
1 parent fa97462 commit 6b25cdcCopy full SHA for 6b25cdc
1 file changed
pyproject.toml
@@ -198,12 +198,10 @@ line-length = 120
198
ignore = [
199
# COM812 may cause conflicts when used with the ruff formatter
200
"COM812",
201
- # D203 conflicts withs D211
+ # D211 conflicts with D203 - we prefer D211, so we ignore D203
202
"D203", # 1 blank line required before class docstring
203
- # "D211", # No blank lines allowed before class docstring
204
- # D212 conflicts with D213
205
- "D212", # Multi-line docstring summary should start at the first line
206
- # "D213", # Multi-line docstring summary should start at the second line
+ # D212 conflicts with D213 - we prefer D212, so we ignore D213
+ "D213", # Multi-line docstring summary should start at the second line
207
"ERA001", # Found commented-out code
208
]
209
select = ["ALL"]
0 commit comments