15 lines
289 B
JavaScript
15 lines
289 B
JavaScript
|
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']);
|
||
|
};
|