Skip to content

Commit

Permalink
Change name of variable back
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire committed Jun 6, 2024
1 parent b5f2b6e commit b206993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async function lintProjects({

outputLogger.logToStdout('');

let allPassed = true;
let isAllPassed = true;

Check failure on line 229 in src/main.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test / Lint (16.x)

'isAllPassed' is assigned a value but never used

Check failure on line 229 in src/main.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test / Lint (18.x)

'isAllPassed' is assigned a value but never used

Check failure on line 229 in src/main.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test / Lint (20.x)

'isAllPassed' is assigned a value but never used
fulfilledProjectLintResultPromiseOutcomes
.sort((a, b) => {
return a.value.projectName.localeCompare(b.value.projectName);
Expand All @@ -240,7 +240,7 @@ async function lintProjects({
outputLogger.logToStdout('\n');
}
if (totalFailed > 0 || totalErrored > 0) {
allPassed = false;
isAllPassed = false;
}
});

Expand Down

0 comments on commit b206993

Please sign in to comment.