-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmypy.ini
43 lines (33 loc) · 927 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
[mypy]
# Is the project well-typed?
strict = False
# Early opt-in even when strict = False
warn_unused_ignores = True
warn_redundant_casts = True
enable_error_code = ignore-without-code
# Support namespace packages per https://github.com/python/mypy/issues/14057
explicit_package_bases = True
disable_error_code =
# Disable due to many false positives
overload-overlap,
# jaraco/jaraco.ui#4
[mypy-jaraco.ui.*]
ignore_missing_imports = True
# jaraco/jaraco.text#17
[mypy-jaraco.text.*]
ignore_missing_imports = True
# jaraco/jaraco.packaging#20
[mypy-jaraco.packaging.*]
ignore_missing_imports = True
# jaraco/jaraco.vcs#40
[mypy-jaraco.vcs.*]
ignore_missing_imports = True
# jaraco/jaraco.versioning#3
[mypy-jaraco.versioning.*]
ignore_missing_imports = True
# requests/toolbelt#279
[mypy-requests_toolbelt]
ignore_missing_imports = True
# dashea/requests-file#40
[mypy-requests_file]
ignore_missing_imports = True