-
Notifications
You must be signed in to change notification settings - Fork 36
/
mypy.ini
50 lines (37 loc) · 959 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
[mypy]
python_version = 3.9
ignore_missing_imports = True
disallow_untyped_calls = False
disallow_untyped_defs = True
disallow_incomplete_defs = True
warn_redundant_casts = True
show_error_codes = True
show_error_context = True
disable_error_code = attr-defined, list-item, operator
pretty = True
[mypy-butterfree.pipelines.*]
ignore_errors = True
[mypy-butterfree.load.*]
ignore_errors = True
[mypy-butterfree.transform.*]
ignore_errors = True
[mypy-butterfree.extract.*]
ignore_errors = True
[mypy-butterfree.config.*]
ignore_errors = True
[mypy-butterfree.clients.*]
ignore_errors = True
[mypy-butterfree.configs.*]
ignore_errors = True
[mypy-butterfree.dataframe_service.*]
ignore_errors = True
[mypy-butterfree.validations.*]
ignore_errors = True
[mypy-butterfree.migrations.*]
ignore_errors = True
[mypy-butterfree.testing.*]
ignore_errors = True
[mypy-butterfree.hooks.*]
ignore_errors = True
[mypy-butterfree._cli.*]
ignore_errors = True