Skip to content

Commit

Permalink
Fix newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
hampus-andersson-op committed Apr 16, 2024
1 parent 7148740 commit e6da399
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/azuredevopsboard/AzureDevOpsBoardService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class AzureDevOpsBoardService {
core.warning('Error getting tickets for Azure DevOps Board!');
console.log('Error:', error.message);
}
console.log();
console.log('');
}
}
}
2 changes: 1 addition & 1 deletion src/branchprotection/BranchProtectionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ export class BranchProtectionService {
core.warning(error.message);
}
}
console.log();
console.log('');
}
}
2 changes: 1 addition & 1 deletion src/codequalitytools/CodeQualityService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export class CodeQualityService {
console.log(`Tool:`, `${codeQualityTool.nameOfTool}`);
core.exportVariable('codeQualityTool', codeQualityTool.nameOfTool);
}
console.log();
console.log('');
}
}
2 changes: 1 addition & 1 deletion src/pentest/PentestService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ export class PentestService {
}
core.exportVariable('pentestDate', pentest.date);
}
console.log();
console.log('');
}
}
2 changes: 1 addition & 1 deletion src/sasttools/SastService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export class SastService {
if (sast.toLowerCase() === 'codeql') {
await CodeQLService.setCodeQLFindings();
}
console.log();
console.log('');
}
}
2 changes: 1 addition & 1 deletion src/scatools/ScaService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export class ScaService {
if (sca.toLowerCase() === 'dependabot') {
await DependabotService.setDependabotFindings();
}
console.log();
console.log('');
}
}
2 changes: 1 addition & 1 deletion src/secretscanning/SecretScanningService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ export class SecretScanningService {
core.warning(error.message);
core.exportVariable('numberOfExposedSecrets', 0);
}
console.log();
console.log('');
}
}
2 changes: 1 addition & 1 deletion src/threatmodeling/ThreatModelingService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ export class ThreatModelingService {
}
core.exportVariable('threatModelingDate', threatModeling.date);
}
console.log();
console.log('');
}
}

0 comments on commit e6da399

Please sign in to comment.