I have done a number of things over the last few hours to get this to work and I wasn't taking notes, so this is what I think needs to happen to install SublimeLinter in ST3
The first thing you need to do is uninstall SublimeLinter if you have it installed:
- Assuming you have Package Controll installed, hit Cmd + Shift + P to bring up the panel and type "remove" and choose "Package Control: Remove Package" and then choose SublimeLinter from the resulting menu
Let's really make sure that all of that SublimeLinter stuff is gone:
- Navigate to ~/Library/Application\ Support/Sublime\ Text\ 3/
- If there are any remnants of SublimeLinter in any of these dirs, remove them: Installed Packages, Local, Packages
Let's install the Git repo to use for SublimeLinter rather than using the PackageControl installer
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages
git clone https://github.com/SublimeLinter/SublimeLinter.git
cd SublimeLinter
git checkout sublime-text-3
Restart ST3 and Boom! That should be it! Don't install SublimeLinter through Package Control at all!!
Thanks, this worked.
To get the "!" icon next to syntax errors I did reset the linter (from Cmd + Shift + P type "lint", choose the reset option) but i'm not sure if this is necessary(?)