File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,6 +93,21 @@ select = [
9393 " NPY" , # numpy
9494 " DTZ" , # datetime
9595]
96+ ignore = [
97+ " E501" , # line too long
98+ " F841" , # local variable is assigned to but never used
99+ " E741" , # ambiguous variable name
100+ " E402" , # module level import not at top of file
101+ " D100" , # TODO: missing docstring in public module
102+ " D101" , # TODO: missing docstring in public class
103+ " D102" , # TODO: missing docstring in public method
104+ " D103" , # TODO: missing docstring in public function
105+ " D104" , # TODO: missing docstring in public package
106+ " D105" , # TODO: missing docstring in magic method
107+ " D205" , # 1 blank line required between summary line and description
108+ " D401" , # TODO: first line should be in imperative mood
109+ " D404" , # TODO: first word of the docstring should not be This
110+ ]
96111
97112[tool .ruff .lint .per-file-ignores ]
98113"__init__.py" = [" F401" ] # Allow unused imports in __init__.py files
You can’t perform that action at this time.
0 commit comments