Skip to content

Commit

Permalink
Add Ruff configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
replaceafill committed May 27, 2024
1 parent 88033af commit a5c33e5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions ruff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[lint]
# Rule reference: https://docs.astral.sh/ruff/rules/
select = [
"B",
"C4",
"E",
"F",
"I",
"UP",
"W",
]
ignore = [
"B904",
"E501",
"F811",
"UP031",
]

[lint.isort]
force-single-line = true

0 comments on commit a5c33e5

Please sign in to comment.