grunt-subgrunt-io
Version:
Run sub-projects' grunt tasks.
22 lines (18 loc) • 452 B
JavaScript
;
module.exports = function (grunt) {
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js',
'tasks/*.js'
],
options: {
jshintrc: '.jshintrc',
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
// By default, lint.
grunt.registerTask('default', ['jshint']);
};