Skip to content

Commit

Permalink
Update ruff configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Apr 23, 2024
1 parent 7d91d37 commit 78bc461
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,19 @@ build-backend = "setuptools.build_meta"


[tool.ruff]
target-version = "py38"
src = ["src"]
line-length = 88

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

# Ignore line length violations
line-length = 88
# Ignore line length violations; ruff format does its best and we can rely on
# that
ignore = ["E501"]

target-version = "py38"

src = ["src"]

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


Expand Down

0 comments on commit 78bc461

Please sign in to comment.