17

I installed SwiftLint from official packages. Now, I desire remove completely and install from Homebrew. I did not find official documentation about uninstall SwiftLint. Any suggestions?

2 Answers2

16

From the Makefile, run

rm -rf "/Library/Frameworks/SwiftLintFramework.framework"
rm -f "/usr/local/bin/swiftlint"
Garrett
  • 5,580
  • 2
  • 31
  • 47
10

Uninstall

brew unlink swiftlint
brew uninstall --force swiftlint

Install

brew install swiftlint
Community
  • 1
  • 1
Sazzad Hissain Khan
  • 37,929
  • 33
  • 189
  • 256