Skip to content

Commit

Permalink
fix(ruff): consolidate RUF rules (#10828)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiblik authored Sep 6, 2024
1 parent c87c419 commit 573b3e3
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,16 @@ select = [
"FAST",
"AIR",
"FURB",
"RUF1","RUF2",
"RUF001","RUF002", "RUF003", "RUF005",
"RUF013",
"RUF019",
"RUF021",
"RUF",
]
ignore = [
"E501",
"E722",
"RUF010",
"RUF012",
"RUF015",
"RUF027",
]
ignore = ["E501", "E722"]

# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
Expand Down

0 comments on commit 573b3e3

Please sign in to comment.