huazhiyu/node_modules/file-match/Gruntfile.js

11 lines
190 B

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