Skip to content

Commit 58e76b6

Browse files
committed
Fix ruff lint warnings
1 parent 9d1872e commit 58e76b6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ target-version = "py39"
7373

7474
[tool.ruff.lint]
7575
select = ["ALL"]
76+
# D203 and D213 are incompatible with D211 and D212 respectively.
77+
# COM812 and ISC001 can cause conflicts when using ruff as a formatter.
78+
# See https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules.
79+
ignore = ["D203", "D213", "COM812", "ISC001"]
7680

7781
[tool.ruff.lint.per-file-ignores]
7882

0 commit comments

Comments
 (0)