-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathmypy.ini
More file actions
47 lines (36 loc) · 940 Bytes
/
Copy pathmypy.ini
File metadata and controls
47 lines (36 loc) · 940 Bytes
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
[mypy]
warn_return_any=False
warn_unused_configs=True
no_implicit_optional=True
warn_redundant_casts=True
warn_unused_ignores=True
show_column_numbers = True
show_error_codes = True
show_error_context = True
plugins = pydantic.mypy
[pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true
# Disable specific error codes in the 'tests' package
[mypy-tests.*]
disable_error_code = annotation-unchecked
allow_untyped_defs = True
[mypy-jmespath]
ignore_missing_imports=True
[mypy-jmespath.exceptions]
ignore_missing_imports=True
[mypy-jmespath.functions]
ignore_missing_imports=True
[mypy-boto3]
ignore_missing_imports = True
[mypy-botocore]
ignore_missing_imports = True
[mypy-boto3.dynamodb.conditions]
ignore_missing_imports = True
[mypy-botocore.config]
ignore_missing_imports = True
[mypy-botocore.exceptions]
ignore_missing_imports = True
[mypy-dataclasses]
ignore_missing_imports = True