UNPKG

pitlab

Version:

GitLab integration with PivotalTracker

23 lines (19 loc) 426 B
/** * Gruntfile.js * Grunt setup / configuration * * (C) Ensequence 2013 */ // ### Exports module.exports = function (grunt) { // Configure grunt grunt.initConfig({ jshint: { all: ['app.js', 'conf/*.js', 'routes/*.js', 'lib/*.js'] } }); // Load in tasks grunt.loadNpmTasks('grunt-contrib-jshint'); // Register tasks grunt.registerTask('default', ['jshint']); };