How to show all of the errors with JSHint

tester picture tester · Jul 13, 2012 · Viewed 9.3k times · Source

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?

Answer

h4ck3rm1k3 picture h4ck3rm1k3 · Sep 28, 2012

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

from there :

/*jshint maxerr: 10000 */