forked from Mirrors/freeswitch
31 lines
621 B
JavaScript
31 lines
621 B
JavaScript
|
module.exports = function(grunt) {
|
||
|
|
||
|
grunt.initConfig({
|
||
|
pkg: grunt.file.readJSON('package.json'),
|
||
|
|
||
|
jshint: {
|
||
|
files: ['Gruntfile.js', 'src/**/*.js', 'test/**/*.js'],
|
||
|
options: {
|
||
|
// options here to override JSHint defaults
|
||
|
globals: {
|
||
|
jQuery: true,
|
||
|
console: true,
|
||
|
module: true,
|
||
|
document: true
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
watch: {
|
||
|
files: ['<%= jshint.files %>'],
|
||
|
tasks: ['jshint']
|
||
|
}
|
||
|
});
|
||
|
|
||
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
||
|
|
||
|
grunt.registerTask('default', ['jshint']);
|
||
|
|
||
|
};
|