7个版本
0.3.1 | 2023年9月4日 |
---|---|
0.3.0 | 2023年9月4日 |
0.2.0 | 2023年9月4日 |
0.1.3 | 2023年9月4日 |
#416 in 文件系统
14KB
287 行
简介
这是一个简单的应用程序,用于检测Python文件中函数定义中缺失的类型提示。
它主要为了教育目的,以了解更多关于tree-sitter的信息。
用法
要运行它,您可以使用cargo安装该软件包,然后运行以下命令
pythcheck {FILE_PATH}
这将检查给定文件中函数的缺失类型提示。
如果您传递一个目录,它将递归地检查该目录中的所有Python文件。有关更多信息,请运行pythcheck -h
。
$ pythcheck -h
Checks Python files for missing type hints in function parameters and return values.
Usage: pythcheck [OPTIONS] <PATH>
Arguments:
<PATH> File or directory to check
Options:
--ignore-hidden Ignores hidden subdirectories and files
--ignore-tests Ignores tests subdirectories and files
--ignore-return Ignores absence of return type hints
-h, --help Print help
-V, --version Print version
依赖项
~9–18MB
~309K SLoC