Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove SwiftLint installed from package

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?

like image 788
Ezequiel Dittler Avatar asked May 23 '16 14:05

Ezequiel Dittler


People also ask

How do I get rid of Swift lint?

Option 2: Disable Rules at Source Level: Sometimes, there will be a case, where you want to disable rule(s) for a specific file or block of code. To disabled rules inside a source file use the following format: // swiftlint:disable <rule1> [<rule2> <rule3>...]

How do I find my Swiftlint version?

Command Line USAGE: swiftlint <subcommand> OPTIONS: --version Show the version.


1 Answers

From the Makefile, run

rm -rf "/Library/Frameworks/SwiftLintFramework.framework"
rm -f "/usr/local/bin/swiftlint"
like image 87
Garrett Avatar answered Sep 21 '22 15:09

Garrett