Skip to content

Commit

Permalink
Use default rules for ruff
Browse files Browse the repository at this point in the history
Ignored rules: Module level import not at top of cell, bare except, lambda assignments, star imports
  • Loading branch information
johannaengland committed Nov 25, 2024
1 parent 81e87de commit e0a5513
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ exclude = [
force-exclude = true

[tool.ruff.lint]
select = ["E711", "E713", "E721", "E9", "F401", "F541", "F63", "F7", "F81", "F82"]
select = ["E4", "E7", "E9", "F"]
ignore = ["E402", "E722", "E731", "F403"]

[tool.towncrier]
directory = "changelog.d"
Expand Down

0 comments on commit e0a5513

Please sign in to comment.