Code linting for Objective C

前端 未结 5 800
情歌与酒
情歌与酒 2020-12-24 08:35

Are there any code linting tools for ObjectiveC?

5条回答
  •  时光取名叫无心
    2020-12-24 08:42

    It's worth mentioning OCLint too. It covers some things not touched by the Clang analyser, such as:

    • Complicated code - high cyclomatic complexity and NPath complexity
    • Code smells - long method, long parameter list, redundant code

    Check out the home page for more details.

提交回复
热议问题