forked from CTSRD-CHERI/cheribuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpytype.cfg
31 lines (24 loc) · 768 Bytes
/
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
[pytype]
# Space-separated list of files or directories to exclude.
exclude =
**/*_test.py
**/test_*.py
3rdparty
# Space-separated list of files or directories to process.
inputs =
pycheribuild
# Keep going past errors to analyze as many files as possible.
keep_going = True
# All pytype output goes here.
output = .pytype
# Platform (e.g., "linux", "win32") that the target code runs on.
platform = linux
# Paths to source code directories, separated by ':'.
pythonpath =
.:3rdparty/pexpect:3rdparty/ptyprocess
# Comma or space separated list of error names to ignore.
# TODO: enable attribute-error once I've figured out a solution for setup_config_options()
disable =
annotation-type-mismatch
attribute-error
report_errors = True