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 b5a1200 commit aad51cbCopy full SHA for aad51cb
package.json
@@ -64,11 +64,7 @@
64
"trailingComma": "none"
65
},
66
"xo": {
67
- "prettier": true,
68
- "rules": {
69
- "no-var": "off",
70
- "prefer-arrow-callback": "off"
71
- }
+ "prettier": true
72
73
"remarkConfig": {
74
"plugins": [
test.js
@@ -1,7 +1,7 @@
1
import test from 'tape'
2
import {phrasing} from './index.js'
3
4
-test('phrasing', function (t) {
+test('phrasing', (t) => {
5
t.equal(phrasing(), false, 'should return `false` without node')
6
7
t.equal(phrasing(null), false, 'should return `false` with `null`')
0 commit comments