forked from bpesquet/pyfit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
29 lines (21 loc) · 919 Bytes
/
mypy.ini
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
# Global options:
[mypy]
# Reports an error whenever a function with type annotations calls a function without annotations
disallow_untyped_calls = True
# Report an error whenever mypy encounters a function definition without type annotations
disallow_untyped_defs = True
# Report an error whenever mypy encounters a partly annotated function definition.
disallow_incomplete_defs = True
# Per-module options:
[mypy-numpy]
# Remove warnings for imports from libraries that do not (yet) use type hints
ignore_missing_imports = True
[mypy-matplotlib.*]
# Remove warnings for imports from libraries that do not (yet) use type hints
ignore_missing_imports = True
[mypy-sklearn.*]
# Remove warnings for imports from libraries that do not (yet) use type hints
ignore_missing_imports = True
[mypy-setuptools.*]
# Remove warnings for imports from libraries that do not (yet) use type hints
ignore_missing_imports = True