File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 113
113
"maximum" : 1
114
114
},
115
115
116
- "requirePaddingNewLinesAfterUseStrict" : true
116
+ "requirePaddingNewLinesAfterUseStrict" : true ,
117
+
118
+ "disallowArrowFunctions" : true ,
119
+
120
+ "validateOrderInObjectKeys" : " asc-insensitive"
117
121
}
118
122
Original file line number Diff line number Diff line change 35
35
"devDependencies" : {
36
36
"tape" : " ^4.0.3" ,
37
37
"covert" : " ^1.1.0" ,
38
- "jscs" : " ^2.0 .0" ,
38
+ "jscs" : " ^2.1 .0" ,
39
39
"editorconfig-tools" : " ^0.1.1" ,
40
40
"nsp" : " ^1.0.3" ,
41
41
"eslint" : " ^1.1.0" ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ test('not regexes', function (t) {
19
19
20
20
test ( '@@toStringTag' , { skip : ! hasToStringTag } , function ( t ) {
21
21
var regex = / a / g;
22
- var fakeRegex = { valueOf : function ( ) { return regex ; } , toString : function ( ) { return String ( regex ) ; } } ;
22
+ var fakeRegex = { toString : function ( ) { return String ( regex ) ; } , valueOf : function ( ) { return regex ; } } ;
23
23
fakeRegex [ Symbol . toStringTag ] = 'RegExp' ;
24
24
t . notOk ( isRegex ( fakeRegex ) , 'fake RegExp with @@toStringTag "RegExp" is not regex' ) ;
25
25
t . end ( ) ;
You can’t perform that action at this time.
0 commit comments