Installing Linters Sublime Text 3
Dan Holloran • August 30, 2015
Sublime Text is one of my favorite editors I have ever used and it has excellent support for linting. This will cover Sublime Text 3 only since the plugin used SublimeLinter went through a major shift from Sublime text 2 to 3. The biggest difference is in ST2 the linters where bundled with the plugin now in ST3 they are created as plugins.
So we will go through the steps to get them setup and configured for Sublime Text 3. The linter plugins all have some requirements you can check out Linting Your Code: Installing the Linters to get all of the requirements installed.
Everything with a $ should be ran in the terminal without the ($ ).
Package Control Installation
If for some reason you have been using Sublime Text 3 without Package Control you need to install it now. You can get the installation instructions via the Package Control website.
Installing plugins via Package Control
This will be referred to as install "X Package" via Package Control.
- Open the command palette
cmd+shift+p
- Type
install
and selectPackage Control: Install Package
from the command palette. - Wait for the list of available packages to load and then start typing the name of the package until you see the plugin you want to install.
- Click on the package you want to install.
- Once the plugin is installed you should receive an install notice.
- Restart Sublime after all packages you need are installed.
Linter Installation
All of the linters require the SublimeLinter Plugin to be installed first.
- Install
SublimeLinter
via package control. - Install
SublimeLinter-phpcs
for PHP Code Sniffer via package control. - Install
SublimeLinter-jshint
for JSHint via package control. - Install
SublimeLinter-jscs
for JSCS via package control. - Install
SublimeLinter-contrib-scss-lint
for SCSS-Lint via package control. - Restart Sublime
General Linter Configuration
To configure the linters is fairly simple you will need to duplicate the default settings before starting. Copy the default settings under Preferences > Package Settings > SublimeLinter > Settings - Default
to Preferences > Package Settings > SublimeLinter > Settings - User
.
You can change the gutter theme, lint mode, mark style, show errors on save and other settings. You can edit them from the command palette cmd+shift+p
and searching for SublimeLinter. The gutter theme is the icon in Sublimes gutter area. The lint mode is when the linter should run I would suggest either Background or Load/Save if Background slows down Sublime too much. Mark style handle how the error will be shown in the code. Show errors on save is one thing I would suggest to disable since it can be rather annoying but thats up to you.
PHP Code Sniffer(PHPCS) Configuration
One last thing you may want to edit is to set WordPress as the default PHPCS standard this so far has been the only linter I had to manually configure. In Preferences > Package Settings > SublimeLinter > Settings - User
under linters you just need to set phpcs.standard
to WordPress.
"linters": {
"phpcs": {
"standard": "WordPress"
},
},
Wrapping Up
Ok well that is all it really takes to get up and linting on Sublime Text 3. It is extremely simple and the little time spent to setup linting will pay off quickly. Well written code is worth the little bit of time up front it takes to make it a conscious decision. It can be just as helpful as commenting your code and writing tests.