dzm
dzm

Reputation: 23544

jshint not recognizing devel

I'm using jshint and have the following options defined:

/*global $, _*/
/*jshint devel:true*/

My understanding is that by having /*jshint devel:true*/ it should allow console and alert, but I continue to get errors on them. Any ideas if there's something else I need to do?

Thank you!

Upvotes: 0

Views: 986

Answers (1)

epascarello
epascarello

Reputation: 207511

Add a space between the e and *

/*jshint devel:true */ 

Upvotes: 3

Related Questions