Skip to content

Commit cd9a72e

Browse files
committed
fix: lint
1 parent 6ed9002 commit cd9a72e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app-config-node/src/environment.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,17 @@ export function currentEnvironment(...args: any[]): string | undefined {
8282
if (args[0]) {
8383
environmentAliases = args[0] as EnvironmentAliases;
8484
logger.warn('Detected deprecated usage of currentEnvironment');
85-
throw new Error(JSON.stringify(args[0]))
85+
throw new Error(JSON.stringify(args[0]));
8686
}
8787

8888
if (Array.isArray(args[1])) {
8989
environmentSourceNames = args[1] as string[];
9090
logger.warn('Detected deprecated usage of currentEnvironment');
91-
throw new Error(JSON.stringify(args[0]))
91+
throw new Error(JSON.stringify(args[0]));
9292
} else if (typeof args[1] === 'string') {
9393
environmentSourceNames = [args[1]];
9494
logger.warn('Detected deprecated usage of currentEnvironment');
95-
throw new Error(JSON.stringify(args[0]))
95+
throw new Error(JSON.stringify(args[0]));
9696
}
9797
}
9898

0 commit comments

Comments
 (0)