What's the difference between 'pod spec lint' and 'pod lib lint'?

后端 未结 1 596
孤城傲影
孤城傲影 2021-02-01 04:13

Cocoapods provides two lint commands, spec lint and lib lint. What\'s the exact different between them, and in what scenario are they each used?

<
相关标签:
1条回答
  • 2021-02-01 04:43

    TL;DR: pod lib lint = local, pod spec lint = local/remote


    You mentioned that you had read the docs but it's still unclear. I'll try to make it more clear :

    pod lib lint
    

    Will lint your pod locally, and will just ensure that you provided everything properly to create your pod. But it will not be enough to validate your pod, Only pod spec lint will.

    pod spec lint
    

    Will lint your pod anywhere. By that I mean that you can have your pod source code up on GitHub, for example, and it will lint. If the pod spec lint returns without errors, you can push the linted pod up to Cocoapods.

    0 讨论(0)
提交回复
热议问题