Skip to content

Commit

Permalink
Fix ruff lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
facutuesca committed Mar 14, 2024
1 parent 9d1872e commit 58e76b6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ target-version = "py39"

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

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

Expand Down

0 comments on commit 58e76b6

Please sign in to comment.