作者:美好心灵66 | 来源:互联网 | 2023-09-25 16:19
OC静态代码检查准备阶段oclint的安装1.安装Homebrewruby-e$(curl-fsSLhttps:raw.githubusercontent.comHom
OC静态代码检查准备阶段
oclint的安装
1.安装Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2.安装OCLint
brew tap oclint/formulae
brew install oclint
安装 xcpretty
gem install xcpretty
在xcode里查看结果
1.创建Aggregate类型的Target
2.Build Phases 选项卡中选择 Add Run Script
3.拷贝脚本
source ~/.bash_profile
cd ${PROJECT_DIR}
xcodebuild clean
xcodebuild| xcpretty -r json-compilation-database -o compile_commands.json
oclint-json-compilation-database -report-type xcode
读懂扫描报告
OCLint Report Summary: TotalFiles=6 FilesWithViolatiOns=2 P1=0 P2=1 P3=10 /Users/issuser/Desktop/OCLintTest/OCLintTest/ViewController.m:29:5: dead code [basic|P2] /Users/issuser/Desktop/OCLintTest/OCLintTest/ViewController.m:19:5: short variable name [naming|P3] Length of variable name `i` is 1, which is shorter than the threshold of 3
...
/*
报告显示:共扫描了6个文件,其中有问题的文件数2个。
p1:1级为0个
p2: 2级为1个(从下面的代码可以看出为dead code),类似于在return语句后写的代码
p3: 3级为10个,该级别比较低。例如一行写的代码超过100个字符就会被列为3级。
*/