UNPKG

grunt-markdox

Version:
26 lines (20 loc) 519 B
/* jshint node: true */ module.exports = function (grunt) { 'use strict'; // Project configuration. grunt.initConfig({ jshint: { all: [ 'Gruntfile.js', 'tasks/*.js', ], options: { jshintrc: '.jshintrc', }, } }); grunt.loadTasks('tasks'); // These plugins provide necessary tasks. grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.registerTask('default', ['jshint']); };