Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit 5caa0a7

Browse files
committed
chore(lint): fix linting errors
1 parent d26b44c commit 5caa0a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lint.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function lint(context: BuildContext, configFile?: string) {
2222
logger.finish();
2323
})
2424
.catch(err => {
25-
if (getBooleanPropertyValue(Constants.ENV_BAIL_ON_LINT_ERROR)){
25+
if (getBooleanPropertyValue(Constants.ENV_BAIL_ON_LINT_ERROR)) {
2626
throw logger.fail(err);
2727
}
2828
logger.finish();
@@ -71,7 +71,7 @@ function lintApp(context: BuildContext, configFile: string) {
7171
return lintFile(context, program, file);
7272
});
7373

74-
return Promise.all(promises)
74+
return Promise.all(promises);
7575
}
7676

7777
function lintFiles(context: BuildContext, program: ts.Program, filePaths: string[]) {

0 commit comments

Comments
 (0)