Skip to content

Commit 761e0e6

Browse files
committed
added more lints
1 parent d4ed517 commit 761e0e6

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

pyproject.toml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,16 @@ version = {attr = "pyspinw.__version__"}
1111
line-length = 120
1212

1313
[tool.ruff.lint]
14-
select = ["PL"]
15-
ignore = ["PLR"]
14+
select = ["D1", # undocumented objects
15+
"D2", # docstring formating w.r.t. whitespace
16+
"E", # pycodestyle errors
17+
"PL", # pylint
18+
"W", # pycodestyle warnings
19+
]
20+
21+
ignore = ["D107", # undocumented __init__
22+
"D203", # 1 blank line before class docstring
23+
"D210", # whitespace surrounding docstring text
24+
"D213", # multi-line summary starts at second line
25+
"PLR", # pylint refactor suggestions
26+
]

0 commit comments

Comments
 (0)