UNPKG

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