【SwiftLint】CocoaPodsでSwiftLintを導入する
CocoaPodsでSwiftLintを導入する参考ページが少なかったので備忘録。
環境
Xcode 9.0
Swift 4.0
SwiftLintをインストール
Profileに以下のように記載して、「pod install」
(Profiileの例)
# Uncomment the next line to define a global platform for your project
# platform :ios, '11.0'
target 'rules-demo' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for rules-demo
pod 'SwiftLint'
target 'rules-demoTests' do
inherit! :search_paths
# Pods for testing
end
end
インストール後の設定
上図の赤枠に以下のテキストをコピペする。
※Homebrewでインストールした場合とテキストが異なるので注意!
if which "${PODS_ROOT}/SwiftLint/swiftlint" >/dev/null; then
${PODS_ROOT}/SwiftLint/swiftlint
else
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi
動作確認
⌘+Bで、Bulidをしてください。
SwiftLintの動作確認が出来ましたら、これで導入は終わりです!
Author And Source
この問題について(【SwiftLint】CocoaPodsでSwiftLintを導入する), 我々は、より多くの情報をここで見つけました https://qiita.com/s_emoto/items/2bddbd1106de4fcd70af著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .