UNPKG

213 BJavaScriptView Raw
1module.exports = function(grunt) {
2 grunt.loadNpmTasks('grunt-contrib-jshint');
3 grunt.initConfig({
4 jshint: {
5 all: [
6 'lib/**/*.js',
7 './*.js',
8 '!./test.js'
9 ]
10 }
11 });
12};
\No newline at end of file