File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
import type { Literal } from 'hast'
2
2
3
+ /* eslint-disable @typescript-eslint/consistent-type-definitions */
4
+
3
5
export interface Raw extends Literal {
4
6
type : 'raw'
5
7
}
@@ -13,3 +15,5 @@ declare module 'hast' {
13
15
raw : Raw
14
16
}
15
17
}
18
+
19
+ /* eslint-enable @typescript-eslint/consistent-type-definitions */
Original file line number Diff line number Diff line change 63
63
"typescript" : " ^4.0.0" ,
64
64
"unified" : " ^10.0.0" ,
65
65
"unist-builder" : " ^3.0.0" ,
66
- "xo" : " ^0.50 .0"
66
+ "xo" : " ^0.52 .0"
67
67
},
68
68
"scripts" : {
69
69
"prepack" : " npm run build && npm run format" ,
Original file line number Diff line number Diff line change 1
1
import type { Parent , Literal } from 'hast'
2
2
3
+ /* eslint-disable @typescript-eslint/consistent-type-definitions */
4
+
3
5
export interface CustomParent extends Parent {
4
6
type : 'customParent'
5
7
}
@@ -19,3 +21,5 @@ declare module 'hast' {
19
21
customParent : CustomParent
20
22
}
21
23
}
24
+
25
+ /* eslint-enable @typescript-eslint/consistent-type-definitions */
You can’t perform that action at this time.
0 commit comments