File tree Expand file tree Collapse file tree 2 files changed +17
-16
lines changed Expand file tree Collapse file tree 2 files changed +17
-16
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "curly" : true ,
3
+ "eqeqeq" : true ,
4
+ "immed" : true ,
5
+ "latedef" : false ,
6
+ "newcap" : true ,
7
+ "noarg" : true ,
8
+ "sub" : true ,
9
+ "undef" : true ,
10
+ "boss" : true ,
11
+ "eqnull" : true ,
12
+ "browser" : true ,
13
+ "globals" : {
14
+ "jQuery" : true
15
+ }
16
+ }
Original file line number Diff line number Diff line change @@ -54,22 +54,7 @@ module.exports = function(grunt) {
54
54
} ,
55
55
jshint : {
56
56
all : [ '<%= concat.dist.dest %>' ] ,
57
- options : {
58
- curly : true ,
59
- eqeqeq : true ,
60
- immed : true ,
61
- latedef : true ,
62
- newcap : true ,
63
- noarg : true ,
64
- sub : true ,
65
- undef : true ,
66
- boss : true ,
67
- eqnull : true ,
68
- browser : true ,
69
- globals : {
70
- jQuery : true
71
- }
72
- }
57
+ options : grunt . file . readJSON ( './.jshintrc' )
73
58
}
74
59
} ) ;
75
60
You can’t perform that action at this time.
0 commit comments