-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ignore jshint directives #74
Comments
👍 |
haha sounds reasonable :D |
👍 |
1 similar comment
👍 |
This is still an issue with |
Are you certain that you are using version 0.5.1? The |
I'm sorry. I was not. I tried with grunt-doxx, that depended on doxx, that depended on dox ~0.4.4. |
directives for jshint should be ignored:
results in
Those directives should really be treated as regular code. JSHint does not allow a space between the comment start and jshint or global:
ok:
/*jshint latedef:false */
,/*global console:true */
not recognized by jshint:
/* jshint onevar:false */
The text was updated successfully, but these errors were encountered: