Skip to content

Commit

Permalink
add fixable = ["ALL"]
Browse files Browse the repository at this point in the history
  • Loading branch information
entorb committed May 2, 2024
1 parent 77dda3f commit 7935961
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ target-version = "py312" # Python 3.12

# extend-exclude = ["src/MyBadFile1.py"]


[lint]
# comment this out to use only default rules (["E4", "E7", "E9", "F"])
select = ["ALL"] # activate all rules
select = ["ALL"] # activate all rules
fixable = ["ALL"] # fix for all enabled rules

# add some more rules to include
# extend-select = ["B", "Q", "E", "W"]
Expand Down

0 comments on commit 7935961

Please sign in to comment.