Skip to content

Instantly share code, notes, and snippets.

@masters3d
Created July 3, 2017 17:47
Show Gist options
  • Save masters3d/7f33f5563feafc9ea4d4a62922cda466 to your computer and use it in GitHub Desktop.
Save masters3d/7f33f5563feafc9ea4d4a62922cda466 to your computer and use it in GitHub Desktop.
if which swiftlint >/dev/null; then
cd ..
echo "Local Linting Dir"
echo $PWD
if [ "$CI" = true ]; then
swiftlint
else
swiftlint lint
swiftlint autocorrect --format
fi
else
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment