Skip to content

Commit

Permalink
Enable isort and pycodestyle warning rules in ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
xxyzz committed Oct 8, 2023
1 parent fcfa593 commit 5a4c997
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[tool.ruff]
builtins = ["_", "load_translations", "get_icons"]
exclude = ["docs"]
select = [
"E", # pycodestyle error
"F", # Pyflakes
"I", # isort
"W", # pycodestyle warning
]

[tool.mypy]
exclude = ["tests", "__main__", "docs"]
Expand Down

0 comments on commit 5a4c997

Please sign in to comment.