File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,7 @@ export class Logger {
3030 FileLogger . writeLog ( 'VERBOSE' , message ) ;
3131 }
3232
33- // eslint-disable-next-line @typescript-eslint/no-explicit-any
34- public static captureVerboseData ( message : string , data : any ) : void {
33+ public static captureVerboseData ( message : string , data : unknown ) : void {
3534 if ( Logger . verbose ) {
3635 FileLogger . writeLog ( 'VERBOSE DATA' , `${ message } : ${ JSON . stringify ( data ) } ` ) ;
3736 }
Original file line number Diff line number Diff line change @@ -12,9 +12,8 @@ export function createRowDataParam(
1212 title ?: string | string [ ] ,
1313 customClass ?: string
1414) : ReportDataParam {
15-
16- if ( title && Array . isArray ( title ) ) {
17- title = title . filter ( t => t ?. trim ?.( ) ) ;
15+ if ( title && Array . isArray ( title ) ) {
16+ title = title . filter ( ( t ) => t ?. trim ?.( ) ) ;
1817 }
1918
2019 return {
You can’t perform that action at this time.
0 commit comments