File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 61
61
"unified" : " ^9.0.0" ,
62
62
"unist-builder" : " ^2.0.0" ,
63
63
"unist-util-remove-position" : " ^3.0.0" ,
64
- "xo" : " ^0.34 .0"
64
+ "xo" : " ^0.38 .0"
65
65
},
66
66
"scripts" : {
67
67
"format" : " remark . -qfo && prettier . -w --loglevel warn && xo --fix" ,
91
91
"no-multi-assign" : " off" ,
92
92
"unicorn/escape-case" : " off" ,
93
93
"unicorn/explicit-length-check" : " off" ,
94
+ "unicorn/no-array-for-each" : " off" ,
94
95
"unicorn/no-fn-reference-in-iterator" : " off" ,
95
96
"unicorn/prefer-number-properties" : " off" ,
96
97
"unicorn/prefer-optional-catch-binding" : " off"
Original file line number Diff line number Diff line change @@ -82,7 +82,9 @@ test('core', function (t) {
82
82
test ( 'fixtures' , function ( t ) {
83
83
var remark = unified ( ) . use ( markdown ) . use ( gfm ) . use ( stringify )
84
84
85
- fs . readdirSync ( fixtures ) . filter ( negate ( hidden ) ) . forEach ( check )
85
+ fs . readdirSync ( fixtures )
86
+ . filter ( negate ( hidden ) )
87
+ . forEach ( ( d ) => check ( d ) )
86
88
87
89
t . end ( )
88
90
You can’t perform that action at this time.
0 commit comments