Skip to content

Commit 7374774

Browse files
committed
Fix linting errors
1 parent e96d734 commit 7374774

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export const config = {
55
get removeUsers(): boolean {
66
return process.env.REMOVE_USERS?.toLowerCase() === 'true'
77
},
8-
get maxRemoveUsers(): number{
9-
return parseInt(process.env.MAX_REMOVE_USERS ?? '0' ) || 100
8+
get maxRemoveUsers(): number {
9+
return parseInt(process.env.MAX_REMOVE_USERS ?? '0') || 100
1010
},
1111
get exitCodeOnMissmatch(): number {
1212
return parseInt(process.env.EXIT_CODE_ON_MISMATCH ?? '0') || 0

0 commit comments

Comments
 (0)