File tree Expand file tree Collapse file tree 1 file changed +7
-22
lines changed Expand file tree Collapse file tree 1 file changed +7
-22
lines changed Original file line number Diff line number Diff line change @@ -44,30 +44,15 @@ ignore = [
44
44
" RUF001" , # String contains ambiguous character (such as Greek letters)
45
45
" RUF002" , # Docstring contains ambiguous character (such as Greek letters)
46
46
" RUF012" , # Mutable class attributes should be annotated with `typing.ClassVar`
47
- " D100" ,
48
- " D101" ,
49
- " D102" ,
50
- " D103" ,
51
- " D104" ,
52
- " D105" ,
53
- " D107" ,
54
- " D200" ,
55
- " D202" ,
56
- " D203" ,
57
- " D204" ,
58
- " D205" ,
59
- " D209" ,
60
- " D212" ,
61
- " D213" ,
62
- " D301" ,
63
- " D400" ,
64
- " D401" ,
65
- " D403" ,
66
- " D413" ,
67
- " D415" ,
68
- " D417" ,
47
+ " D100" , # Missing docstring in public module
48
+ " D101" , # Missing docstring in public class
49
+ " D102" , # Missing docstring in public method
50
+ " D103" , # Missing docstring in public function
69
51
]
70
52
53
+ [tool .ruff .lint .pydocstyle ]
54
+ convention = " numpy"
55
+
71
56
[tool .ruff .lint .isort ]
72
57
lines-between-types = 1
73
58
You can’t perform that action at this time.
0 commit comments