hezhiying/node_modules/utils-extend/Gruntfile.js

11 lines
192 B

module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.initConfig({
jshint: {
all: [
'test/**/*.js',
'./*.js'
]
}
});
};