We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c44814e commit 5152342Copy full SHA for 5152342
package.json
@@ -63,11 +63,7 @@
63
"trailingComma": "none"
64
},
65
"xo": {
66
- "prettier": true,
67
- "rules": {
68
- "no-var": "off",
69
- "prefer-arrow-callback": "off"
70
- }
+ "prettier": true
71
72
"remarkConfig": {
73
"plugins": [
test.js
@@ -1,7 +1,7 @@
1
import test from 'tape'
2
import {embedded} from './index.js'
3
4
-test('embedded', function (t) {
+test('embedded', (t) => {
5
t.equal(embedded(), false, 'should return `false` without node')
6
7
t.equal(embedded(null), false, 'should return `false` with `null`')
0 commit comments