Skip to content

Commit ba86aab

Browse files
committed
build: remove pylint, add ruff lint ignore rules
1 parent 2f876b7 commit ba86aab

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

pyproject.toml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.8"
2020
]
2121
dependencies = [
22+
"importlib-resources",
2223
"jsonschema==3.0.0",
2324
"xmltodict==0.12.0",
2425
"datacite==1.1.2",
@@ -54,6 +55,7 @@ zip-safe = false
5455
exclude = ["tests", "docs"]
5556

5657
[tool.setuptools.package-data]
58+
"ckanext.doi.data" = ["*", "**/*"]
5759
"ckanext.doi.theme" = ["*", "**/*"]
5860

5961
[tool.commitizen]
@@ -70,9 +72,14 @@ version_files = [
7072
[tool.ruff.format]
7173
quote-style = "single"
7274

73-
[tool.pylint]
74-
max-line-length = 88
75-
disable = ["C0114", "R0903"]
75+
[tool.ruff.lint]
76+
ignore = [
77+
"D100",
78+
"D200",
79+
"D202",
80+
"D203",
81+
"D212"
82+
]
7683

7784
[tool.docformatter]
7885
wrap-summaries = 88

0 commit comments

Comments
 (0)