forked from equinor/ert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mypy-strict.ini
70 lines (50 loc) · 1.13 KB
/
.mypy-strict.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
[mypy]
plugins = pydantic.mypy
strict = True
exclude = (?x)(
src/ert/shared
| src/ert/dark_storage
| src/ert/_c_wrappers
| src/ert/ensemble_evaluator
)
[mypy-ert.shared.*]
ignore_errors = True
[mypy-ert.cli.*]
ignore_errors = True
[mypy-ert.gui.*]
ignore_errors = True
[mypy-_ert_com_protocol._schema_pb2]
ignore_errors = True
[mypy-iterative_ensemble_smoother.*]
ignore_missing_imports = True
[mypy-cloudpickle.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-ert._clib.*]
ignore_missing_imports = True
[mypy-ert._c_wrappers.*]
ignore_errors = True
[mypy-cwrap.*]
ignore_errors = True
[mypy-ecl.*]
ignore_errors = True
ignore_missing_imports = True
[mypy-_ert_job_runner.*]
ignore_errors = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-pluggy.*]
ignore_missing_imports = True
[mypy-cloudevents.*]
ignore_missing_imports = True
[mypy-graphlib.*]
ignore_missing_imports = True
[mypy-dask_jobqueue.*]
ignore_missing_imports = True
[mypy-prefect.*]
ignore_missing_imports = True
[mypy-ert.ensemble_evaluator.*]
ignore_errors = True