加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.cfg 998 Bytes
一键复制 编辑 原始数据 按行查看 历史
猫神战之京 提交于 2020-06-17 23:36 . first init projiect
# 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 =
.
# Keep going past errors to analyze as many files as possible.
keep_going = False
# Run N jobs in parallel.
jobs = 4
# 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 or space separated list of error names to ignore.
disable =
pyi-error
# import-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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化