热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

OC静态代码检查

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
//也可以在xcodebuild后添加参数

读懂扫描报告

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级。
*/

推荐阅读
author-avatar
美好心灵66
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有