You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JSHint Instructions and Xcode Full Install Options
Add instructions for installing JSHint Sublime Text Package
Include location of Xcode installed developer tools:
ls -al /Applications/Xcode.app/Contents/Developer/usr/bin/
Node modules are installed locally in the `node_modules` folder of each project by default, but there are at least two that are worth installing globally. Those are [CoffeeScript](http://coffeescript.org/) and [Grunt](http://gruntjs.com/):
523
528
524
529
$ npm install -g coffee-script
@@ -552,6 +557,18 @@ To uninstall a package:
552
557
553
558
$ npm uninstall <package>
554
559
560
+
##JSHint
561
+
562
+
JSHint is a JavaScript developer's best friend.
563
+
564
+
If the extra credit assignment to install Sublime Package Manager was completed, JSHint can be run as part of Sublime Text.
565
+
566
+
Install JSHint via npm (global install preferred)
567
+
568
+
$ npm install -g jshint
569
+
570
+
Follow additional instructions on the [JSHint Package Manager page](https://sublime.wbond.net/packages/JSHint) or [build it manually](https://github.com/jshint/jshint)
571
+
555
572
## Ruby and RVM
556
573
557
574
Like Python, [Ruby](http://www.ruby-lang.org/) is already installed on Unix systems. But we don't want to mess around with that installation. More importantly, we want to be able to use the latest version of Ruby.
@@ -836,3 +853,5 @@ Here is a quick list of some apps I use, and that you might find useful as well:
836
853
-[Moom](http://manytricks.com/moom/): Don't waste time resizing and moving your windows. Moom makes this very easy. **($10)**
0 commit comments