Skip to content

Commit af5e812

Browse files
committed
Update dev-dependencies
1 parent 288b595 commit af5e812

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
},
3636
"devDependencies": {
3737
"browserify": "^16.0.0",
38-
"dtslint": "^2.0.0",
39-
"nyc": "^14.0.0",
38+
"dtslint": "^3.0.0",
39+
"nyc": "^15.0.0",
4040
"prettier": "^1.0.0",
4141
"remark-cli": "^7.0.0",
4242
"remark-preset-wooorm": "^6.0.0",
4343
"tape": "^4.0.0",
4444
"tinyify": "^2.0.0",
4545
"typescript": "^3.0.0",
46-
"xo": "^0.25.0"
46+
"xo": "^0.27.0"
4747
},
4848
"scripts": {
4949
"format": "remark . -qfo && prettier --write \"**/*.{js,ts}\" && xo --fix",

types/unist-util-stringify-position-tests.ts

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import stringify = require('unist-util-stringify-position')
22

3+
/* eslint-disable @typescript-eslint/no-unused-vars */
4+
35
// Point
46
const stringValue: string = stringify({line: 2, column: 3}) // => '2:3'
57

@@ -18,3 +20,5 @@ const stringValue3: string = stringify({
1820
end: {line: 5, column: 12}
1921
}
2022
}) // => '5:11-5:12'
23+
24+
/* eslint-enable @typescript-eslint/no-unused-vars */

0 commit comments

Comments
 (0)