From 3706cc93373fa956bc9f3726750443e6071d6ea9 Mon Sep 17 00:00:00 2001 From: Leigh Johnson Date: Wed, 9 Nov 2016 11:41:09 -0500 Subject: [PATCH] Switch Grunt jshint to stdout output #3845 --- awx/ui/grunt-tasks/jshint.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/awx/ui/grunt-tasks/jshint.js b/awx/ui/grunt-tasks/jshint.js index 102cce1bf2..0ed7193e6e 100644 --- a/awx/ui/grunt-tasks/jshint.js +++ b/awx/ui/grunt-tasks/jshint.js @@ -2,8 +2,7 @@ module.exports = { source: { src: ['client/src/**/*.js', '*conf.js', '*.config.js', 'Gruntfile.js'], options: { - reporter: 'jslint', - reporterOutput: 'coverage/jshint.xml', + reporter: require('jshint-stylish'), jshintrc: true } },