File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
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 30
30
"devDependencies" : {
31
31
"foreach" : " ^2.0.5" ,
32
32
"is" : " ^3.0.1" ,
33
- "tape" : " ^4.0.2 " ,
33
+ "tape" : " ^4.0.3 " ,
34
34
"indexof" : " ^0.0.1" ,
35
35
"covert" : " ^1.1.0" ,
36
- "jscs" : " ^2.0 .0" ,
36
+ "jscs" : " ^2.1 .0" ,
37
37
"editorconfig-tools" : " ^0.1.1" ,
38
38
"nsp" : " ^1.0.3" ,
39
- "eslint" : " ^1.0 .0" ,
39
+ "eslint" : " ^1.1 .0" ,
40
40
"@ljharb/eslint-config" : " ^1.0.4" ,
41
41
"semver" : " ^5.0.1"
42
42
},
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ test('not Dates', function (t) {
21
21
22
22
test ( '@@toStringTag' , { skip : ! hasSymbols || ! Symbol . toStringTag } , function ( t ) {
23
23
var realDate = new Date ( ) ;
24
- var fakeDate = { valueOf : function ( ) { return realDate . getTime ( ) ; } , toString : function ( ) { return String ( realDate ) ; } } ;
24
+ var fakeDate = { toString : function ( ) { return String ( realDate ) ; } , valueOf : function ( ) { return realDate . getTime ( ) ; } } ;
25
25
fakeDate [ Symbol . toStringTag ] = 'Date' ;
26
26
t . notOk ( isDate ( fakeDate ) , 'fake Date with @@toStringTag "Date" is not Date' ) ;
27
27
t . end ( ) ;
You can’t perform that action at this time.
0 commit comments