JSHint Inline
JSHint HTML files or other files that contains script tags. Requires node.js
Details
Installs
- Total 5K
- Win 2K
- Mac 2K
- Linux 716
Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
JSHint-Inline
Sublime Text extension to apply jshint to HTML files or other files containing <script>
tags.
Prerequisites: NodeJS in your PATH, and jshint
Install Node
Just click on the install button on http://nodejs.org
Add nodejs to your PATH
NodeJS Installer should add itself to your path variable. On Windows, restart your system or add it manually: SET PATH=C:\Program Files\Nodejs;%PATH%
Just add it to Sublime using WBond's Package Manager.
To set the Build System and run JSHint-Inline, use the shortcut, ⌃ + ⇧ + J
or… choose Tools > Build System > JSHint-Inline
and hit ⌘ + B
or ⌃ + B
to check all script tags on your HTML file.
JSHint Options
They are located on a variable options
. Default:
{
"browser": true,
"globalstrict": true,
"smarttabs": true,
"debug": true,
"strict": true,
"unused": true,
"undef": true,
"curly": true
}
You can override it using JSHint comments like /*global jQuery, console */
or /* jshint -W007, node */
To find your options file, you can open Package Manager with ⌘ + ⇧ + P
or ⌃ + ⇧ + P
and type Pack
. Select Preferences: Browse Packages
. Or Go to menu Preferences > Browse Packages
. Go to JSHint-Inline
. The file is there.
Test file
I've included a file called test.html
with 2 script tags just for testing. You can open a terminal and run node jshinline test.html
or open it with Sublime and run the build.
Questions, doubts, comments? Raise an issue
Extra Notes
To have the nice success (✓) and error (✗) signs on Sublime's console, you need a font that supports it. If you're on a mac, no problem. For Windows I recommend DejaVu Sans Mono
Run JSHint on save
Install SublimeOnSaveBuild