I am using a setup on Xcode that runs the following script for SwiftLint
if which $PATH/swiftlint >/dev/null; then
$PATH/swiftlint
elif which $HOME/.brew/bin/swiftlint >/dev/null; then
$HOME/.brew/bin/swiftlint
elif which ~/Softwares/homebrew/bin/swiftlint >/dev/null; then
~/Softwares/homebrew/bin/swiftlint
else
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi
I am unable to use pods
or brew.
To make SwiftLint
available I added the following to my path by using
vim ~/.bash_profile
export PATH
export PATH=$PATH:/Users/me/Documents/SwiftLint
and I can now access SwiftLint
everywhere through the command line.
However, Xcode still displays the message that SwiftLint is not installed.
I can't use another method to install Swiftlint or change the script. I guess there is a problem with my export path - what is it?