Skip to content

Commit 588f976

Browse files
committed
Update dev-dependencies
1 parent 3e9de00 commit 588f976

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"unified": "^9.0.0",
6262
"unist-builder": "^2.0.0",
6363
"unist-util-remove-position": "^3.0.0",
64-
"xo": "^0.34.0"
64+
"xo": "^0.38.0"
6565
},
6666
"scripts": {
6767
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
@@ -91,6 +91,7 @@
9191
"no-multi-assign": "off",
9292
"unicorn/escape-case": "off",
9393
"unicorn/explicit-length-check": "off",
94+
"unicorn/no-array-for-each": "off",
9495
"unicorn/no-fn-reference-in-iterator": "off",
9596
"unicorn/prefer-number-properties": "off",
9697
"unicorn/prefer-optional-catch-binding": "off"

test/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ test('core', function (t) {
8282
test('fixtures', function (t) {
8383
var remark = unified().use(markdown).use(gfm).use(stringify)
8484

85-
fs.readdirSync(fixtures).filter(negate(hidden)).forEach(check)
85+
fs.readdirSync(fixtures)
86+
.filter(negate(hidden))
87+
.forEach((d) => check(d))
8688

8789
t.end()
8890

0 commit comments

Comments
 (0)