We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9275d4e commit 15362d1Copy full SHA for 15362d1
package.json
@@ -65,11 +65,7 @@
65
"trailingComma": "none"
66
},
67
"xo": {
68
- "prettier": true,
69
- "rules": {
70
- "no-var": "off",
71
- "prefer-arrow-callback": "off"
72
- }
+ "prettier": true
73
74
"remarkConfig": {
75
"plugins": [
test.js
@@ -1,7 +1,7 @@
1
import test from 'tape'
2
import {scriptSupporting} from './index.js'
3
4
-test('scriptSupporting', function (t) {
+test('scriptSupporting', (t) => {
5
t.equal(scriptSupporting(), false, 'should return `false` without node')
6
7
t.equal(scriptSupporting(null), false, 'should return `false` with `null`')
0 commit comments