Skip to content

Commit

Permalink
move mypy configuration into pyproject.toml (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
wimglenn authored Feb 4, 2024
1 parent 56e80e8 commit e77f947
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .mypy.ini

This file was deleted.

11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,14 @@ include-package-data = true

[tool.setuptools.dynamic]
version = {attr = "pytest_structlog.__version__"}

[tool.mypy]
show_error_codes = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
strict_equality = true

0 comments on commit e77f947

Please sign in to comment.