0

我使用 brew 安装了 cloc。

我喜欢检查 Django 项目的代码行数。

我绝对不想计算迁移中的那些,并且只限于 python 文件。

我在项目根目录尝试过cloc --not-match-d=migrations --include-lang=python .cloc --not-match-d=migrations --include-lang=py . 但他们被忽略了。

这是结果:

± cloc --not-match-d=migrations --include-lang=python .
   18714 text files.
   13100 unique files.
   18771 files ignored.
4

1 回答 1

2

你快到了...语言名称区分大小写。这应该工作

cloc --not-match-d=migrations --include-lang=Python .

语言名称必须与 的条目之一匹配cloc --show-lang。如果名称中有空格,请将其括在引号中,例如--include-lang="Visual Basic".

于 2021-06-25T15:36:09.107 回答