Skip to content

Commit

Permalink
Merge pull request #154 from heuer/ruff_warnings
Browse files Browse the repository at this point in the history
Updated ruff settings (previous syntax is deprecated)
  • Loading branch information
flacjacket authored Mar 15, 2024
2 parents 644e414 + 9918664 commit 82c8036
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ version = {attr = "version.version"}
# N pep8 naming
# UP pyupgrade
# RUF ruff specific rules
select = ['E', 'F', 'I', 'N', 'W', 'UP', 'RUF']
lint.select = ['E', 'F', 'I', 'N', 'W', 'UP', 'RUF']
lint.ignore = ["E501"]
# Match black line length
line-length = 88
target-version = "py38"
ignore = ["E501"]

[tool.black]
line-length = 88
Expand Down

0 comments on commit 82c8036

Please sign in to comment.