Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mxr committed Nov 19, 2023
1 parent 176113c commit 07ad6b2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true

[tool.ruff]
target-version = "py38"

[tool.ruff.lint]
extend-select = [
"UP", # see pyupgrade
"B", # see flake8-bugbear
"A", # see flake8-builtins
"C4", # see flake8-comprehension
"SIM", # see flake8-simplify
"TCH" # see flake8-type-checking
]

0 comments on commit 07ad6b2

Please sign in to comment.