Skip to content

Commit cfbfa8c

Browse files
committed
ci: remove pylint, add ruff lint rules
Primarily the defaults plus pydocstyle and isort.
1 parent 05533fb commit cfbfa8c

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,20 @@ version_files = [
6767
[tool.ruff.format]
6868
quote-style = "single"
6969

70-
[tool.pylint]
71-
max-line-length = 88
72-
disable = ["C0114", "R0903"]
70+
[tool.ruff.lint]
71+
select = [
72+
"E",
73+
"F",
74+
"I",
75+
"D"
76+
]
77+
ignore = [
78+
"D100",
79+
"D200",
80+
"D202",
81+
"D203",
82+
"D212"
83+
]
7384

7485
[tool.docformatter]
7586
wrap-summaries = 88

0 commit comments

Comments
 (0)