forked from biopython/biopython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mypy.ini
57 lines (44 loc) · 1.05 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
[mypy]
# equivalent to "files" in .pre-commit-config.yaml
files = Bio,BioSQL
strict_equality = True
extra_checks = True
#check_untyped_defs = True
#disallow_untyped_calls = True
disallow_incomplete_defs = True
#disallow_untyped_defs = True
no_implicit_reexport = True
show_error_context = True
show_column_numbers = True
show_error_codes = True
pretty = True
warn_redundant_casts = True
#warn_return_any = True
warn_unused_configs = True
[mypy-Bio/PDB/*]
ignore_errors = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-reportlab.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-networkx.*]
ignore_missing_imports = True
[mypy-pylab.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True
[mypy-rdflib.*]
ignore_missing_imports = True
[mypy-MySQLdb.*]
ignore_missing_imports = True
[mypy-xml.sax.expatreader.*]
ignore_missing_imports = True
[mypy-Bio.pairwise2.*]
# deprecated module
ignore_errors = True
[mypy-com.ziclix.*]
ignore_missing_imports = True