Skip to content

Commit 8acbacc

Browse files
committed
Update dev-dependencies
1 parent ecea0a3 commit 8acbacc

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

complex-types.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import type {Literal} from 'hast'
22

3+
/* eslint-disable @typescript-eslint/consistent-type-definitions */
4+
35
export interface Raw extends Literal {
46
type: 'raw'
57
}
@@ -13,3 +15,5 @@ declare module 'hast' {
1315
raw: Raw
1416
}
1517
}
18+
19+
/* eslint-enable @typescript-eslint/consistent-type-definitions */

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"typescript": "^4.0.0",
6464
"unified": "^10.0.0",
6565
"unist-builder": "^3.0.0",
66-
"xo": "^0.50.0"
66+
"xo": "^0.52.0"
6767
},
6868
"scripts": {
6969
"prepack": "npm run build && npm run format",

test-types.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import type {Parent, Literal} from 'hast'
22

3+
/* eslint-disable @typescript-eslint/consistent-type-definitions */
4+
35
export interface CustomParent extends Parent {
46
type: 'customParent'
57
}
@@ -19,3 +21,5 @@ declare module 'hast' {
1921
customParent: CustomParent
2022
}
2123
}
24+
25+
/* eslint-enable @typescript-eslint/consistent-type-definitions */

0 commit comments

Comments
 (0)