加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
scspell.py 739 Bytes
一键复制 编辑 原始数据 按行查看 历史
HuangWeiCen 提交于 2022-01-20 11:29 . update ci
import os
import sys
scspell_dir = []
def get_all_folders_containing_go_files(path):
files = os.listdir(path)
not_add_to_scspell_dir = True
for file in files:
if os.path.splitext(file)[-1] == ".go" and not_add_to_scspell_dir:
scspell_dir.append(path)
not_add_to_scspell_dir = False
complete_path = path + "/" + file
if os.path.isdir(complete_path):
get_all_folders_containing_go_files(complete_path)
get_all_folders_containing_go_files(sys.argv[1])
d = os.system(
"scspell --use-builtin-base-dict --override-dictionary ./spelling_dict.txt --report-only " + "/*.go ".join(
scspell_dir) + "/*.go")
if d != 0:
raise ValueError(d)
else:
print(d)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化