Use the ESLint JavaScript validator in TextMate 2.
(Want to use JSHint instead? Try the jshint-external.tmbundle)
- Validate automatically when you save your file, and on-demand.
- Shows you which
.eslintrc
settings are being used, with a direct link to open the applicable settings file. - Errors and warnings include a link to the relevant explanation on eslint.org.
First install ESLint:
- Install Node.js.
[sudo] npm install -g eslint
Now install the bundle:
- Download the latest release .zip file.
- Extract it and double-click to install in TextMate.
In most cases no configuration is required. However, in some cases you may want to customize the following:
- Use
eslint
that is not on yourPATH
: Ifeslint
is not on yourPATH
, set theTM_JAVASCRIPT_ESLINT_ESLINT
variable to point to it. Set in TextMate > Preferences… > Variables. - Don’t validate on save: If you don’t want to validate your JavaScript automatically when you press
⌘S
:- Open the Bundle Editor (Bundles > Edit Bundles…).
- Navigate to JavaScript ESLint > Menu Actions > Save & Validate with ESLint.
- In the drawer that appears, delete the “Key Equivalent” of
⌘S
.
- Use a project-specific ESLint configuration:
eslint
automatically uses.eslintrc
files found in your directory tree. See the documentation on configuring ESLint for more information.
- Quit TextMate.
- Open
~/Library/Application Support/Avian/Pristine Copy/Bundles
. - Trash
javascript-eslint.tmbundle
. - Open
~/Library/Application Support/Avian/Bundles
. - If there is a file called
JavaScript ESLint.tmbundle
, trash it. - You may need to clear TextMate’s cache by trashing
~/Library/Caches/com.macromates.TextMate.preview
.