forked from abTEM/abTEM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
66 lines (43 loc) · 999 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
61
62
[mypy]
exclude = (?x)(
^tests/.*$
| ^examples/.*$
| ^test/.*$)
[mypy-dask.*]
ignore_missing_imports = true
[mypy-abtem.waves.*]
ignore_errors = true
[mypy-abtem.potentials.charge_density.*]
ignore_errors = true
[mypy-abtem.integrals.*]
ignore_errors = true
[mypy-abtem.parametrizations.*]
ignore_errors = true
[mypy-abtem.inelastic.core_loss]
ignore_errors = true
[mypy-abtem.inelastic.plasmons]
ignore_errors = true
[mypy-abtem.visualize.*]
ignore_errors = true
[mypy-abtem.measurements.*]
ignore_errors = true
[mypy-abtem.noise]
ignore_errors = true
[mypy-abtem.tilt]
ignore_errors = true
[mypy-abtem.reconstruct.*]
ignore_errors = true
[mypy-abtem.prism.*]
ignore_errors = true
[mypy-abtem.potentials.gpaw.*]
ignore_errors = true
[mypy-abtem.potential.charge_density.*]
ignore_errors = true
[mypy-abtem.potentials._poisson.*]
ignore_errors = true
[mypy-abtem.mcf.*]
ignore_errors = true
[mypy-abtem.mtf.*]
ignore_errors = true
[mypy-setup]
ignore_errors = true