-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathGruntfile.js
70 lines (70 loc) · 1.61 KB
/
Gruntfile.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
module.exports = function (grunt) {
require('load-grunt-tasks')(grunt);
grunt.initConfig({
jshint: {
//list of source files to analyze
all: [
'Gruntfile.js',
'javascript/*.js',
//use to check pattern specs as well
'../spec/*.js'
],
options: {
//reuse pattern specs jsHint settings
jshintrc: '../.jshintrc'
}
},
coffeelint: {
//list of source files to analyze
all: 'coffeescript/*.coffee',
//reuse pattern specs coffeelint settings
options: require('../spec/config.json').coffeelint
},
complexity: {
js: {
//list of source files to analyze
src: ['javascript/*.js'],
options: {
// show only maintainability errors
errorsOnly: false,
// http://en.wikipedia.org/wiki/Cyclomatic_complexity
cyclomatic: 8,
// http://en.wikipedia.org/wiki/Halstead_complexity_measures
halstead: 9,
maintainability: 100
}
}
},
karma: {
coffee: {
configFile: 'coffeescript/karma.conf.coffee'
},
javascript: {
configFile: 'javascript/karma.conf.js'
}
},
clean: {
coverage: '{,*/}/coverage/*'
},
coverage: {
options: {
thresholds: {
statements: 100,
branches: 100,
functions: 100,
lines: 100
},
dir: 'coverage',
root: 'javascript'
}
}
});
grunt.registerTask('default', [
'coffeelint',
'jshint',
'complexity',
'clean:coverage',
'karma',
'coverage'
]);
};