forked from pympler/pympler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
60 lines (41 loc) · 1021 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[mypy]
disallow_untyped_defs = True
[mypy-_testcapi.*]
ignore_missing_imports = True
[mypy-bottle.*]
ignore_missing_imports = True
[mypy-debug_toolbar.*]
ignore_missing_imports = True
[mypy-django.*]
ignore_missing_imports = True
[mypy-idlelib.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-pylab.*]
ignore_missing_imports = True
[mypy-win32api.*]
ignore_missing_imports = True
[mypy-win32process.*]
ignore_missing_imports = True
[mypy-pympler.util.bottle]
ignore_errors = True
# Ingore errors until type annotations have been added to the complete modules
[mypy-pympler.asizeof]
ignore_errors = True
[mypy-pympler.garbagegraph]
ignore_errors = True
[mypy-pympler.mprofile]
ignore_errors = True
[mypy-pympler.refbrowser]
ignore_errors = True
[mypy-pympler.refgraph]
ignore_errors = True
[mypy-pympler.summary]
ignore_errors = True
[mypy-pympler.tracker]
ignore_errors = True
[mypy-pympler.web]
ignore_errors = True