Skip to content

Commit 8d67887

Browse files
Merge pull request #322 from mdmehran-qureshi/prerelease/alpha
lint fix
2 parents 9bae62e + 86810cc commit 8d67887

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/utils/logger.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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
}

src/utils/reportGenerator/reportUtil.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)