JSCS is a code style linter for programmatically enforcing your style guide.
hound-jscs is a Node service that polls JscsReviewJobs from the
jscs_review queue, lints code with JSCS, then pushes the results to
the high queue, as CompletedFileReviewJobs.
First, add the following to the bottom of index.js:
var testQueue = require("./lib/test-queue");
testQueue(redis);Next, start the Resque web interface:
$ cd node_modules/node-resque/resque-web
$ bundle install
$ bundle exec rackup
$ open http://localhost:9292As you run the worker, monitor how jobs flow through the queues.