reid / node-jslint

The JavaScript Code Quality Tool — for Node.js.
http://jslint.com/
Other
491 stars 101 forks source link

Quiet option #116

Closed mcandre closed 9 years ago

mcandre commented 9 years ago

As a command line user, I want to be able to hide JSLint <file> is OK. messages, so that the output shows me more relevant information. A simple -q flag would make me happy :)

As a workaround, I can pipe jslint with jslint <file> | grep -v ' is OK' | grep -v '^$', but I would prefer that jslint supported this feature natively.

smikes commented 9 years ago

I think --terse does this; does it not need your expectations?

smikes commented 9 years ago

*need -> Meet. (On a phone, sorry)

mcandre commented 9 years ago

Cheers!