File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,22 +40,17 @@ exclude = [
4040]
4141
4242select = [
43- " D" ,
44- # summary lines have to be placed on the first physical line of the docstring
45- " D212" ,
46- # imperative mood for all docstrings
47- " D401" ,
48- # summary line has to end in a punctuation mark
49- " D415" ,
50- # require documentation for _all_ function parameters
51- " D417" ,
43+ " D" , # enable "pydocstyle" rules
44+ " D212" , # summary lines must be on the first physical line of the docstring
45+ " D401" , # imperative mood for all docstrings
46+ " D415" , # summary line has to end in a punctuation mark
47+ " D417" , # require documentation for *all* function parameters
48+
5249]
5350
5451ignore = [
55- # no blank lines allowed after function docstring
56- " D202" ,
52+ " D202" , # no blank lines allowed after function docstring
5753]
5854
59-
6055[tool .ruff .lint .pydocstyle ]
6156convention = " numpy"
You can’t perform that action at this time.
0 commit comments