File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -210,19 +210,9 @@ ignore = [
210
210
" COM812" ,
211
211
# Allow our chosen docstring line-style - no one-line summary.
212
212
" D200" ,
213
- " D203" ,
214
213
" D205" ,
215
214
" D212" ,
216
- " D213" ,
217
- " D400" ,
218
215
" D415" ,
219
- # It is too much work to make every docstring imperative.
220
- " D401" ,
221
- # We ignore some docstyle errors which do not apply to Google style
222
- # docstrings.
223
- " D406" ,
224
- " D407" ,
225
- " D413" ,
226
216
# Ruff warns that this conflicts with the formatter.
227
217
" ISC001" ,
228
218
# We have an existing interface to support and so we do not want to change
@@ -246,6 +236,9 @@ ignore = [
246
236
# is sometimes annoyingly removed.
247
237
unfixable = [" ERA001" ]
248
238
239
+ [tool .ruff .lint .pydocstyle ]
240
+ convention = " google"
241
+
249
242
[tool .ruff .lint .per-file-ignores ]
250
243
"tests/**" = [
251
244
# Allow possible hardcoded passwords in tests.
You can’t perform that action at this time.
0 commit comments