We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d1c5d commit 5384552Copy full SHA for 5384552
.pre-commit-config.yaml
@@ -16,3 +16,15 @@ repos:
16
- id: isort
17
language: python_venv
18
exclude: ^pandas/__init__\.py$|^pandas/core/api\.py$
19
+- repo: https://github.com/pre-commit/mirrors-mypy
20
+ rev: v0.730
21
+ hooks:
22
+ - id: mypy
23
+ # We run mypy over all files because of:
24
+ # * changes in type definitions may affect non-touched files.
25
+ # * Running it with `mypy pandas` and the filenames will lead to
26
+ # spurious duplicate module errors,
27
+ # see also https://github.com/pre-commit/mirrors-mypy/issues/5
28
+ pass_filenames: false
29
+ args:
30
+ - pandas
0 commit comments