-
Notifications
You must be signed in to change notification settings - Fork 62
/
.pytype.cfg
64 lines (49 loc) · 1.8 KB
/
.pytype.cfg
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
[pytype]
# Space-separated list of files or directories to exclude.
exclude =
env/
**/*_test.py
**/test_*.py
**/__init__.py
skyplane/benchmark/**/*.py
scripts/**/*.py
examples/*.py
skyplane/planner/solver.py
skyplane/planner/solver_ilp.py
skyplane/planner/solver_ron.py
# Space-separated list of files or directories to process.
inputs =
.
# Keep going past errors to analyze as many files as possible.
keep_going = False
# Run N jobs in parallel. When 'auto' is used, this will be equivalent to the
# number of CPUs on the host system.
jobs = 2
# All pytype output goes here.
output = .pytype
# Paths to source code directories, separated by ':'.
pythonpath =
.
# Check attribute values against their annotations. This flag is temporary and
# will be removed once this behavior is enabled by default.
; check_attribute_types = False
# Check container mutations against their annotations. This flag is temporary
# and will be removed once this behavior is enabled by default.
; check_container_types = False
# Check parameter defaults and assignments against their annotations. This flag
# is temporary and will be removed once this behavior is enabled by default.
; check_parameter_types = False
# Check variable values against their annotations. This flag is temporary and
# will be removed once this behavior is enabled by default.
; check_variable_types = False
# Comma or space separated list of error names to ignore.
; disable =
; pyi-error
# Don't report errors.
; report_errors = True
# Experimental: Infer precise return types even for invalid function calls.
; precise_return = False
# Experimental: solve unknown types to label with structural types.
; protocols = False
# Experimental: Only load submodules that are explicitly imported.
; strict_import = False