forked from FGRibreau/check-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.checkbuild
More file actions
30 lines (30 loc) · 680 Bytes
/
.checkbuild
File metadata and controls
30 lines (30 loc) · 680 Bytes
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
{
"checkbuild": {
// "buddyjs"
"enable": ["jshint", "jscs", "jsinspect", "nsp", "david", "plato"],
// don't exit immediately if one of the tools reports an error (default true)
"continueOnError": true,
// don't exit(1) even if we had some failures (default false)
"allowFailures": false
},
"jshint": {
"args": ["src/**/*.js"]
},
"jscs": {
"args": ["src/**/*.js"]
},
"jsinspect": {
"args": ["*.js"],
"diff": true
},
"buddyjs": {
"args": ["*.js"],
"ignore": [0, 1, 200]
},
"nsp": {},
"plato": {
"args": ["*.js"],
// define your project min average maintainability
"avgMaintainability": 70.00
}
}