File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,8 @@ ignore = [
119
119
" B028" , # No explicit `stacklevel` keyword argument found
120
120
" B011" , # Do not `assert False` (`python -O` removes these calls), raise `AssertionError()`
121
121
" D100" , # Missing docstring in public module
122
+ " D203" , # incorrect-blank-line-before-class
123
+ " D213" , # multi-line-summary-second-line
122
124
" D406" , # Section name should end with a newline ("Returns")Ruff
123
125
" D407" , # Missing dashed underline after section
124
126
" E501" , # Line too long
@@ -161,7 +163,7 @@ ignore = [
161
163
" SLF001" , # Private member accessed
162
164
]
163
165
164
- [tool .ruff .extend-per-file-ignores ]
166
+ [tool .ruff .lint . extend-per-file-ignores ]
165
167
"__init__.py" = [
166
168
" F401" , # Allow unused imports in __init__.py files
167
169
]
You can’t perform that action at this time.
0 commit comments