Skip to content

Commit

Permalink
pyproject ruff structure
Browse files Browse the repository at this point in the history
enforce mypy on tests which are already passing
  • Loading branch information
dhimmel committed Jul 20, 2024
1 parent c242afa commit 918750a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,12 @@ license-files = ["LICENSE.md"]

[tool.ruff]
target-version = "py38"
line-length = 88

[tool.ruff.lint]
ignore = [
"E501", # line-too-long (black should handle)
]
line-length = 88
select = [
"B", # flake8-bugbear
"C", # flake8-comprehensions
Expand Down Expand Up @@ -86,7 +88,4 @@ module = [
ignore_missing_imports = true

[[tool.mypy.overrides]]
module = [
"tests.*",
]
disallow_untyped_decorators = false

0 comments on commit 918750a

Please sign in to comment.