美文网首页
使用 OCLint

使用 OCLint

作者: 每天多一点 | 来源:发表于2016-05-18 16:26 被阅读459次

    概要

    使用 Oclint 进行代码检验.

    安装

    请参考 http://docs.oclint.org/en/stable/intro/installation.html

    入门

    在 iOS 上需要 xcodebuild 命令的支持, 所以请先安装好 Xcode command line tool.

    检查 OC 程序, 请参考 http://docs.oclint.org/en/stable/guide/xcodebuild.html

    接下来按照上面的说明一步一步执行. 不过, 还有一些注意点:

    • 编译之前需要清理
    xcodebuild -target targetName clean
    

    主要原因是 为了 oclint 分析, 要得到完整的编译 log

    • 使用xcpretty 时可能会遇到安装问题
      使用gem的 -n 参数来安装 xcpretty
    sudo gem install -n /usr/local/bin xcpretty
    

    使用 oclint 和 xcpretty 请参考这里

    • 使用 oclint-json-compilation-database 命令

    相关文章

      网友评论

          本文标题:使用 OCLint

          本文链接:https://www.haomeiwen.com/subject/uzrwrttx.html