Skip to content

Commit

Permalink
Add pyproject.toml with initial linter config (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvn23 authored Oct 6, 2024
1 parent a98237e commit 50e3ca5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]

[tool.ruff.lint.isort]
force-sort-within-sections = true
known-first-party = [
"pystove",
]
combine-as-imports = true
split-on-trailing-comma = false

0 comments on commit 50e3ca5

Please sign in to comment.