Created
November 6, 2015 16:01
-
-
Save ethangardner/51601b0a5577c5bca556 to your computer and use it in GitHub Desktop.
JSHint config object for Gruntfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jshint: { | |
options: { | |
curly: true, | |
eqeqeq: true, | |
immed: true, | |
latedef: true, | |
newcap: true, | |
noarg: true, | |
sub: true, | |
undef: true, | |
unused: true, | |
boss: true, | |
eqnull: true, | |
browser: true, | |
globals: { | |
console: true, | |
jQuery: true | |
} | |
}, | |
all: ['<%= buildAssets %>/js/script.js'] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment