File tree Expand file tree Collapse file tree 3 files changed +3
-51
lines changed
Expand file tree Collapse file tree 3 files changed +3
-51
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ export class CommentPlugin extends ConverterComponent {
214214 }
215215 }
216216 }
217- if ( ! decl . signatures ?. some ( sig => sig . comment ) ) {
217+ if ( ! decl . signatures ?. some ( ( sig ) => sig . comment ) ) {
218218 hiddenItems . add ( decl ) ;
219219 }
220220 } else {
@@ -245,7 +245,7 @@ export class CommentPlugin extends ConverterComponent {
245245 }
246246
247247 if ( this . isHidden ( ref ) ) {
248- this . getHiddenItems ( ref ) . forEach ( item => hidden . add ( item ) ) ;
248+ this . getHiddenItems ( ref ) . forEach ( ( item ) => hidden . add ( item ) ) ;
249249 }
250250 }
251251 hidden . forEach ( ( reflection ) => project . removeReflection ( reflection ) ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -616,5 +616,5 @@ export const issueTests: {
616616 // But I don't know how to test it.
617617 logger . discardDebugMessages ( ) ;
618618 logger . expectNoOtherMessages ( ) ;
619- }
619+ } ,
620620} ;
You can’t perform that action at this time.
0 commit comments