-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.mypy.ini
More file actions
22 lines (22 loc) · 662 Bytes
/
.mypy.ini
File metadata and controls
22 lines (22 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[mypy]
exclude = (?x)(
kattis-cli # file/folder that starts with kattis-cli
| \.github # file/folder that starts with .github
| \.githooks # file/folder that starts with .githooks
| tests # file/folder that starts with tests
)
disallow_any_generics = false
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = false
disallow_untyped_defs = true
follow_imports = normal
ignore_missing_imports = true
no_implicit_reexport = true
show_error_codes = true
show_error_context = true
strict_equality = true
strict_optional = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true