Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repos:
additional_dependencies: [Flake8-pyproject, Flake8-AAA, wemake-python-styleguide==1.3.*]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.0
rev: v1.19.0
hooks:
- id: mypy
args: ["--config-file=pyproject.toml", "."]
Expand Down
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dev = [
"freezegun==1.5.*",
"ipdb==0.13.*",
"ipython==9.*",
"mypy==1.15.*",
"mypy==1.19.*",
"pre-commit==4.2.*",
"pyfakefs==5.10.*",
"pytest==8.3.*",
Expand Down Expand Up @@ -250,11 +250,6 @@ pydocstyle.convention = "google"

[tool.mypy]
# The mypy configurations: http://bit.ly/2zEl9WI
ignore_missing_imports = true
strict = true
local_partial_types = true
warn_unreachable = true

enable_error_code = [
"truthy-bool",
"truthy-iterable",
Expand All @@ -268,5 +263,9 @@ enable_error_code = [
"unimported-reveal",
"deprecated",
]

exclude = ["tests"]
exclude_gitignore = true
ignore_missing_imports = true
local_partial_types = true
strict = true
warn_unreachable = true
Loading