Skip to content

Commit

Permalink
fixup! Issue #16 Enable ruff code linter (instead of flake8)
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Jan 22, 2024
1 parent 18c2f4d commit d8a2191
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,12 @@ profile = "black"


[tool.ruff]
line-length = 100
# line-length = 100

[tool.ruff.lint]
select = ["E", "F"]
ignore = [
"E501", # Ignore "line-too-long" issues, let black handle that.
]


0 comments on commit d8a2191

Please sign in to comment.