From 055f894a88da84f7a03fdaeee38cf8ae6dad852d Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 5 Dec 2014 23:05:05 +1100 Subject: [PATCH] Use stylish jshint reporter --- Makefile | 2 +- package.json | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 51fc240391..2c784cc090 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ bench: node node_modules/matcha/bin/_matcha lint: - $(JSHINT_CMD) lib bin benchmark/index.js + $(JSHINT_CMD) --reporter node_modules/jshint-stylish/stylish.js lib bin benchmark/index.js test-clean: rm -rf test/tmp diff --git a/package.json b/package.json index a5cfd7ec58..db4f66e795 100644 --- a/package.json +++ b/package.json @@ -52,13 +52,14 @@ "source-map-support": "0.2.8" }, "devDependencies": { + "browserify": "6.3.2", + "chai": "^1.9.2", "istanbul": "0.3.2", + "jshint": "2.5.10", + "jshint-stylish": "^1.0.0", "matcha": "0.6.0", "mocha": "1.21.4", - "uglify-js": "2.4.15", - "browserify": "6.3.2", "rimraf": "2.2.8", - "jshint": "2.5.10", - "chai": "^1.9.2" + "uglify-js": "2.4.15" } }