Stelescope/node_modules/connect-mongo/Gruntfile.js

15 lines
289 B
JavaScript
Raw Normal View History

2020-08-31 16:25:01 +00:00
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.initConfig({
jshint: {
options: { jshintrc: true },
all: ['*.js', 'lib/*.js', 'test/*.js']
}
});
grunt.registerTask('default', ['jshint']);
};