Skip to content

Commit

Permalink
Add mypy config to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
zjosua committed Nov 1, 2023
1 parent ea26647 commit 4945beb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
[tool.black]
extend-exclude = "^/src/pokemanki/libaddon"
extend-exclude = "src/pokemanki/libaddon/"

[tool.isort]
profile = "black"
extend_skip = ["src/pokemanki/libaddon/", "src/pokemanki/gui/forms/"]
extend_skip = [
"src/pokemanki/libaddon/",
"src/pokemanki/gui/forms/",
]

[tool.mypy]
exclude = [
"src/pokemanki/libaddon/",
]

0 comments on commit 4945beb

Please sign in to comment.