forked from bridgecrewio/checkov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
36 lines (26 loc) · 748 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
[mypy]
mypy_path = extra_stubs
files = checkov
exclude = checkov/(arm/checks|cloudformation/checks|kubernetes/checks|serverless|terraform/(checks|graph_builder/local_graph.py|parser.py|plan_runner.py|runner.py))
strict = True
disallow_subclassing_any = False
implicit_reexport = True
show_error_codes = True
[mypy-configargparse.*]
ignore_missing_imports = True
[mypy-deep_merge.*]
ignore_missing_imports = True
[mypy-docker.*]
ignore_missing_imports = True
[mypy-dpath.*]
ignore_missing_imports = True
[mypy-igraph.*]
ignore_missing_imports = True
[mypy-networkx.*]
ignore_missing_imports = True
[mypy-spdx.*]
ignore_missing_imports = True
[mypy-license_expression.*]
ignore_missing_imports = True
[mypy-checkov.*]
follow_imports = skip