This repository was archived by the owner on Sep 8, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +21
-20
lines changed Expand file tree Collapse file tree 2 files changed +21
-20
lines changed Original file line number Diff line number Diff line change @@ -86,26 +86,7 @@ module.exports = function(grunt) {
86
86
} ,
87
87
test : {
88
88
files :{ src : [ 'test/*.spec.js' , 'gruntFile.js' ] } ,
89
- options : grunt . util . _ . extend ( { } , grunt . file . readJSON ( '.jshintrc' ) , {
90
- node : true ,
91
- globals : {
92
- angular : false ,
93
- inject : false ,
94
- '$' : false ,
95
-
96
- jasmine : false ,
97
- afterEach : false ,
98
- beforeEach : false ,
99
- ddescribe : false ,
100
- describe : false ,
101
- expect : false ,
102
- iit : false ,
103
- it : false ,
104
- spyOn : false ,
105
- xdescribe : false ,
106
- xit : false
107
- }
108
- } )
89
+ options : grunt . util . _ . extend ( { } , grunt . file . readJSON ( '.jshintrc' ) , grunt . file . readJSON ( 'test/.jshintrc' ) )
109
90
}
110
91
} ,
111
92
Original file line number Diff line number Diff line change
1
+ {
2
+ "node" : true ,
3
+ "globals" : {
4
+ "angular" : false ,
5
+ "inject" : false ,
6
+ "$" : false ,
7
+
8
+ "jasmine" : false ,
9
+ "afterEach" : false ,
10
+ "beforeEach" : false ,
11
+ "ddescribe" : false ,
12
+ "describe" : false ,
13
+ "expect" : false ,
14
+ "iit" : false ,
15
+ "it" : false ,
16
+ "spyOn" : false ,
17
+ "xdescribe" : false ,
18
+ "xit" : false
19
+ }
20
+ }
You can’t perform that action at this time.
0 commit comments