GalaxyLint 0.5

GalaxyLint 0.5

Maintained by Publitio.



  • By
  • Galaxy weblinks

Galaxy Lint

N|Solid

Build Status

add this to your pod file -

pod 'GalaxyLint', :git => 'https://github.com/GalaxyHydra/GwlLint.git'

then run -

pod install

command on terminal.

add a runscript by going to Project Navigator> Build Phases > click on + from top left corner and select New run Script > Paste this script into it -

if which swiftlint >/dev/null; then
    swiftlint --config ./Pods/GalaxyLint/GalaxyLint.xcframework/ios-arm64/GalaxyLint.framework/.swiftlint.yml --no-cache
else
echo "warning: SwiftLint not installed, 'brew install swiftlint' or download from https://github.com/realm/SwiftLint"
fi