-
Notifications
You must be signed in to change notification settings - Fork 0
/
grunt.js
56 lines (53 loc) · 1.15 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
48
49
50
51
52
53
54
55
56
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
lint: {
files: ['grunt.js', 'app/js/**/*.js', 'test/unit/**/*.js']
},
qunit: {
files: ['test/**/*.html']
},
watch: {
files: '<config:lint.files>',
tasks: 'lint qunit'
},
jshint: {
options: {
boss: true,
browser: true,
// camelcase: true,
curly: true,
eqeqeq: true,
eqnull: true,
forin: true,
immed: true,
// indent: true,
latedef: true,
newcap: true,
noarg: true,
plusplus: true,
sub: true,
// strict: true,
undef: true,
unused: true
},
globals: {
s5b: true,
Timesheik: true,
moment: true,
it: true,
expect: true,
describe: true,
spyOn: true,
beforeEach: true,
afterEach: true,
angular: true,
module: true,
inject: true
}
}
});
// Default task.
grunt.registerTask('default', 'lint qunit');
};