Skip to content

Instantly share code, notes, and snippets.

Created May 20, 2013 23:26
Show Gist options
  • Save anonymous/5616411 to your computer and use it in GitHub Desktop.
Save anonymous/5616411 to your computer and use it in GitHub Desktop.
Grunt Presentation Code
module.exports = function(grunt) {
var cfg = {
jshint2: {
options: {
jshint: {
node: true,
unused: true,
undef: true
}
},
all: ["lib/**/*.js"]
}
};
grunt.initConfig(cfg);
grunt.registerTask("default", ["jshint2:all"]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment