File tree 3 files changed +11
-8
lines changed
3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 69
69
"trailingComma" : " none"
70
70
},
71
71
"xo" : {
72
- "prettier" : true ,
73
- "rules" : {
74
- "capitalized-comments" : " off"
75
- }
72
+ "prettier" : true
76
73
},
77
74
"remarkConfig" : {
78
75
"plugins" : [
Original file line number Diff line number Diff line change @@ -57,8 +57,11 @@ test('mdast-util-definitions', (t) => {
57
57
'should work on weird identifiers'
58
58
)
59
59
60
- /* eslint-disable-next-line no-use-extend-native/no-use-extend-native */
61
- t . equal ( { } . type , undefined , 'should not polute the prototype' ) // type-coverage:ignore-line
60
+ /* eslint-disable no-use-extend-native/no-use-extend-native */
61
+ // @ts -expect-error: yes.
62
+ // type-coverage:ignore-next-line
63
+ t . equal ( { } . type , undefined , 'should not polute the prototype' )
64
+ /* eslint-enable no-use-extend-native/no-use-extend-native */
62
65
63
66
t . deepEqual (
64
67
definitions ( tree ) ( 'toString' ) ,
@@ -70,8 +73,10 @@ test('mdast-util-definitions', (t) => {
70
73
'[example]: https://one.com\n[example]: https://two.com'
71
74
)
72
75
76
+ const example = definitions ( tree ) ( 'example' )
77
+
73
78
t . deepEqual (
74
- definitions ( tree ) ( ' example' ) . url ,
79
+ example && example . url ,
75
80
'https://one.com' ,
76
81
'should prefer the first of duplicate definitions'
77
82
)
Original file line number Diff line number Diff line change 10
10
"declaration" : true ,
11
11
"emitDeclarationOnly" : true ,
12
12
"allowSyntheticDefaultImports" : true ,
13
- "skipLibCheck" : true
13
+ "skipLibCheck" : true ,
14
+ "strict" : true
14
15
}
15
16
}
You can’t perform that action at this time.
0 commit comments