Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grunt/jshint - task watcher terminal output colors

I'm using Grunt task runner to build a web app on Windows 8.1, and have JShint task for checking Javascript. The Gruntfile was generated using the Webapp generator.

When JSHint detects an error, the output generated in the terminal window is colored navy blue - which is very difficult to read against the black background color of the terminal window.

I have tried to change the background color to something else, but while it fixes the JShint output, it makes other output hard to read.

So my question is; how do I change the color of the JSHint output?

like image 407
zumek Avatar asked Apr 18 '14 08:04

zumek


1 Answers

I found this question when trying to do the same thing. One thing that you can try is using the no-color flag. Run like this:

grunt jshint --no-color
like image 185
sixtyfootersdude Avatar answered Nov 13 '22 18:11

sixtyfootersdude