forked from semgrep/semgrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
71 lines (53 loc) · 1.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[mypy]
# Globals
python_version = 3.7
# Strict typing options
mypy_path = ./cli/stubs
# Avoid configuration issues
warn_unused_configs = True
# Import Discovery
ignore_missing_imports = False
follow_imports = normal
# Dynamic typing
disallow_subclassing_any = True
disallow_any_generics = False
disallow_any_unimported = True
disallow_any_expr = False
disallow_any_decorated = False
disallow_any_explicit = False
# Untyped definitions and calls
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
# Implicit optional
no_implicit_optional = True
# Other warns
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
# Ignore missing imports for third party libraries without type stubs
# Must have one entry per package
# Should reduce the size of this section as time goes on
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-wcmatch.*]
ignore_missing_imports = True
[mypy-peewee]
ignore_missing_imports = True
[mypy-pylsp_jsonrpc.*]
ignore_missing_imports = True
[mypy-semgrep.rule_match]
disallow_any_decorated = False
warn_return_any = False
[mypy-semgrep.pattern_match]
disallow_any_decorated = False
warn_return_any = False
[mypy-semgrep.formatter.*]
disallow_any_decorated = False
warn_return_any = False
[mypy-semgrep.commands.scan]
disallow_untyped_decorators = False