I need to install swiftlint with mint on my mac, on the path user/.mint/bin, but xcode dont recognize the installation i can use a custom path xcode swiftlint configuration ?
Asked
Active
Viewed 485 times
0
-
`sudo gem install cocoapods`, `pod 'SwiftLint'` for xcode project – Sergei Krivonos Aug 31 '22 at 11:41
1 Answers
1
Before checking for swiftlint
, your script needs to update the local PATH:
export PATH=${HOME}/.mint/bin:${PATH}
# Rest of script

Rob Napier
- 286,113
- 34
- 456
- 610