https://github.com/sublimelinter/sublimelinter-jshint
SublimeLinter plugin for JavaScript, using jshint.
https://github.com/sublimelinter/sublimelinter-jshint
Last synced: about 1 year ago
JSON representation
SublimeLinter plugin for JavaScript, using jshint.
- Host: GitHub
- URL: https://github.com/sublimelinter/sublimelinter-jshint
- Owner: SublimeLinter
- License: mit
- Created: 2013-12-15T21:39:56.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-09-01T13:10:44.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T17:05:26.502Z (about 1 year ago)
- Language: Python
- Size: 55.7 KB
- Stars: 459
- Watchers: 17
- Forks: 46
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
SublimeLinter-jshint
=========================
[](https://travis-ci.org/SublimeLinter/SublimeLinter-jshint)
This linter plugin for [SublimeLinter](https://github.com/SublimeLinter/SublimeLinter) provides an interface to [jshint](http://www.jshint.com/docs/).
It will be used with files that have the "JavaScript" syntax, or within `` tags in HTML files.
## Installation
SublimeLinter must be installed in order to use this plugin.
Please use [Package Control](https://packagecontrol.io) to install the linter plugin.
Before installing this plugin, ensure that `jshint` (2.5.0 or later) is installed on your system.
To install `jshint`, do the following:
1. Install [Node.js](http://nodejs.org) (and [npm](https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager) on Linux).
1. Install `jshint` (or globally with `-g`):
```
npm install jshint
```
1. If you are using `nvm` and `zsh`, ensure that the line to load `nvm` is in `.zshenv` or `.zprofile` and not `.zshrc`.(reason: [here](http://www.sublimelinter.com/en/latest/installation.html) and [here](https://github.com/SublimeLinter/SublimeLinter3/issues/128))
Please make sure that the path to `jshint` is available to SublimeLinter.
The docs cover [troubleshooting PATH configuration](http://sublimelinter.com/en/latest/troubleshooting.html#finding-a-linter-executable).
## Settings
- SublimeLinter settings: http://sublimelinter.com/en/latest/settings.html
- Linter settings: http://sublimelinter.com/en/latest/linter_settings.html
You can configure `jshint` options in the way you would from the command line, with `.jshintrc` files. For more information, see the [jshint docs](http://www.jshint.com/docs/). You may provide a custom config file by setting the linter’s `"args"` setting to `["--config", "/path/to/file"]`. On Windows, be sure to double the backslashes in the path, for example `["--config", "C:\\Users\\Aparajita\\jshint.conf"]`.
### Using with tabs
If you use tabs as your indentation, make sure you set the option `indent: 1` in your .jshintrc file. If not the wrong sections of the code will be highlighted.