Skip to content

Commit

Permalink
Update ruff configuration (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed May 4, 2024
1 parent 8870bcf commit 2a942d3
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,16 @@ build-backend = "setuptools.build_meta"


[tool.ruff]
# Enable pycodestyle (E), pyflakes (F), and bugbear (B) rules
select = ["E", "F", "B"]

# Ignore line length violations
line-length = 88
ignore = ["E501"]

target-version = "py38"

src = ["src", "tests"]

[tool.ruff.flake8-quotes]
[tool.ruff.lint]
# Enable pycodestyle (E), pyflakes (F), and bugbear (B) rules
select = ["E", "F", "B"]
ignore = ["E501"]

[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"


Expand Down

0 comments on commit 2a942d3

Please sign in to comment.