anki/pytype.conf
2019-12-21 07:16:26 +10:00

45 lines
974 B
Plaintext

# NOTE: All relative paths are relative to the location of this file.
[pytype]
# Space-separated list of files or directories to exclude.
exclude =
**/*_test.py
**/test_*.py
# Space-separated list of files or directories to process.
inputs =
anki
# Keep going past errors to analyze as many files as possible.
keep_going = False
# Run N jobs in parallel.
jobs = 8
# All pytype output goes here.
output = .pytype
# Paths to source code directories, separated by ':'.
pythonpath =
.
# Python version (major.minor) of the target code.
#python_version = 3.7
# Comma 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