Skip to content

Instantly share code, notes, and snippets.

@ethangardner
Created November 6, 2015 16:01
Show Gist options
  • Save ethangardner/51601b0a5577c5bca556 to your computer and use it in GitHub Desktop.
Save ethangardner/51601b0a5577c5bca556 to your computer and use it in GitHub Desktop.
JSHint config object for Gruntfile
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