-
Notifications
You must be signed in to change notification settings - Fork 57
/
mypy.ini
73 lines (51 loc) · 1.28 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
[mypy]
disallow_untyped_defs = True
extra_checks = True
ignore_missing_imports = True
strict_equality = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unused_ignores = True
exclude = tests|docs|examples|bin
[mypy-xtgeo.common.*]
ignore_errors = True
[mypy-xtgeo.cube.*]
ignore_errors = True
[mypy-xtgeo.metadata.*]
ignore_errors = True
[mypy-xtgeo.plot.*]
ignore_errors = True
[mypy-xtgeo.roxutils.*]
ignore_errors = True
[mypy-xtgeo.surface.*]
ignore_errors = True
[mypy-xtgeo.well.*]
ignore_errors = True
[mypy-xtgeo.xyz.*]
ignore_errors = True
[mypy-xtgeo.grid3d._ecl_grid]
ignore_errors = True
[mypy-xtgeo.grid3d._egrid]
ignore_errors = True
[mypy-xtgeo.grid3d._find_gridprop_in_eclrun]
ignore_errors = True
[mypy-xtgeo.grid3d._grdecl_format]
ignore_errors = True
[mypy-xtgeo.grid3d._grdecl_grid]
ignore_errors = True
[mypy-xtgeo.grid3d._grid3d_utils]
ignore_errors = True
[mypy-xtgeo.grid3d._grid_refine]
ignore_errors = True
[mypy-xtgeo.grid3d._gridprop_op1]
ignore_errors = True
[mypy-xtgeo.grid3d._gridprops_import_eclrun]
ignore_errors = True
[mypy-xtgeo.grid3d._gridprops_import_roff]
ignore_errors = True
[mypy-xtgeo.grid3d._roff_grid]
ignore_errors = True
[mypy-xtgeo.grid3d.grid]
ignore_errors = True
[mypy-xtgeo.grid3d.grid_properties]
ignore_errors = True