-
Notifications
You must be signed in to change notification settings - Fork 0
/
grunt.js
47 lines (45 loc) · 1.07 KB
/
grunt.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*global module */
module.exports = function( grunt ) {
'use strict';
grunt.initConfig({
qunit: {
files: [
'test/index.html',
'test/modernizr_v3.html'
]
},
lint: {
files: [
'grunt.js',
'bug-detects/*.js'
]
},
watch: {
files: '<config:lint.files>',
tasks: 'lint'
},
jshint: {
options: {
boss: true,
browser: true,
curly: false,
devel: true,
eqeqeq: false,
eqnull: true,
expr: true,
evil: true,
immed: false,
laxcomma: true,
newcap: false,
noarg: true,
smarttabs: true,
sub: true,
undef: true
},
globals: {
Modernizr: true
}
}
});
grunt.registerTask('default', 'lint');
};