blob: e896c65528e066bfaa08d4c35838d81814b4905f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
module.exports = function(grunt) {
'use strict';
var jshintOptions = grunt.file.readJSON('.jshintrc');
jshintOptions.reporter = require('jshint-stylish');
grunt.initConfig({
jshint: {
options: jshintOptions,
target: [
'Gruntfile.js',
'src/*.js',
'test/*.js',
'!src/*.min.js',
'!src/punycode.js'
]
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('lint', 'jshint');
};
|