ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

JSHint Inline

by bitbonsai ST2

JSHint HTML files or other files that contains script tags. Requires node.js

Details

  • 2016.05.27.09.14.21
  • github.​com
  • github.​com
  • 8 years ago
  • 31 minutes ago
  • 11 years ago

Installs

  • Total 5K
  • Win 2K
  • Mac 2K
  • Linux 716
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
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

License

MIT: http://bitbonsai.mit-license.org