Skip to content

Commit ff57221

Browse files
committed
[cdt-98] - tslint fixed
Signed-off-by: ashish <[email protected]>
1 parent 780d472 commit ff57221

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands/showfile.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ export default class ShowFile extends Command {
3838
}
3939

4040
private getFileLinesToShow(flags: any) {
41-
if(flags.num && flags.num>0) // if value available and valid
42-
return flags.num;
41+
if (flags.num && flags.num > 0) // if value available and valid
42+
return flags.num
4343
else
44-
return ShowFile.DEFAULT_COUNT;
44+
return ShowFile.DEFAULT_COUNT
4545
}
4646
// tslint:disable-next-line:no-unused
4747
private checkParameters(flags: unknown, args: { [p: string]: any }) {

0 commit comments

Comments
 (0)