-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mypy.ini
More file actions
45 lines (34 loc) · 834 Bytes
/
.mypy.ini
File metadata and controls
45 lines (34 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[mypy]
python_version = 3.11
warn_unused_configs = True
warn_redundant_casts = True
exclude = (xarray_eop/conversion/.*)
[mypy-xarray_eop.*]
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
warn_unused_ignores = True
implicit_reexport = False
ignore_missing_imports = True
[mypy-fsspec]
ignore_missing_imports = True
[mypy-s3fs]
ignore_missing_imports = True
[mypy-zarr.*]
ignore_missing_imports = True
[mypy-jinja2.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-datatree.*]
ignore_missing_imports = True
[mypy-xarray.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-dask.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True