JSLint works fine for just one JavaScript file. Recently, I\'ve started breaking my program into several pieces.
I don\'t want to be stringing the pieces each time I
If you don't need a running count of errors, open terminal (in OS X) and paste this:
for i in $(find . -iname "*.js"); do jshint $i; done