UNPKG

grunt-contrib

Version:
28 lines (26 loc) 516 B
module.exports = function(grunt) { "use strict"; grunt.initConfig({ lint: { all: ["grunt.js", "tasks/*.js", "test/*.js"] }, jshint: { options: { curly: true, eqeqeq: true, immed: true, latedef: true, newcap: true, noarg: true, sub: true, undef: true, boss: true, eqnull: true, node: true, es5: true } } }); grunt.registerTask("default", "lint"); grunt.loadTasks("tasks"); };