How to show all of the errors with JSHint

jshint

Solution

see this issue : https://github.com/jshint/jshint/issues/180

from there :

/*jshint maxerr: 10000 */

Problem

Say I run JSHint on a file. It reports back 83% of the errors. I want 100% of the errors, but by default it says "Too many errors". Running `jshint filename.js`, how would I lift this limit and show all of the errors?

Original source