idea 查询项目代码行数_统计项目代码行数

本文介绍了 3 种统计项目代码的方式,分别为 Cloc 库、VSCode 代码统计插件 —— VS Code Counter、IDEA 代码统计插件 —— Statistic。

一、 使用 Cloc 统计代码行数

Cloc (opens new window)是一款使用 Perl 语言开发的开源代码统计工具,支持多平台使用、多语言识别,能够计算指定目标文件或文件夹中的文件数(files)、空白行数(blank)、注释行数(comment)和代码行数(code)。

1.1、安装 cloc

Windows 系统可前往下载 exe 安装程序 (opens new window)。Mac 系统可使用 Homwbrew 安装。

# Mac 系统安装

$ brew install cloc

1.2、执行命令

# Vue 工程代码统计

$ cloc ./ --exclude-dir=node_modules

1.3、 常用命令:

cloc ./ 统计当前文件夹代码量

cloc ./ --exclude-dir=目录名 统计排除当前目录下的某个文件夹的代码量,多个文件使用,分隔

cloc -by-file 文件后缀名 统计特定文件的代码量

输出参考:

cloc ./ --exclude-dir=node_modules

70 text files.

70 unique files.

9 files ignored.

github.com/AlDanial/cloc v 1.86 T=0.13 s (482.5 files/s, 47444.8 lines/s)

--------------------------------------------------

你可能感兴趣的:(idea,查询项目代码行数)