UNPKG

worklog

Version:

Log your work to a specific file, from the cli.

20 lines (18 loc) 360 B
module.exports = function(grunt) { 'use strict'; grunt.config('jshint', { options: { jshintrc: '.jshintrc', reporter: require('jshint-stylish') }, gruntfile: { src: ['Gruntfile.js', 'grunt/*.js'] }, lib: { src: ['*.js'] }, test: { src: ['test/*.js'] } }); };