Skip to content

Commit 8664620

Browse files
committed
fix: linter issues
1 parent db877ce commit 8664620

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/code-quality/languages/cpp/cpp.vistor.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export class CPPQualityVisitor
7171
return true;
7272
}
7373

74+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
7475
// @ts-ignore
7576
private isCamelCase(text: string): boolean {
7677
const camelCaseRegex = /^[a-z][a-zA-Z0-9]*$/;

src/submissions/submissions.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class SubmissionsService {
102102
})
103103
public async handleJobStatus(msg: string): Promise<void> {
104104
// TODO: use logger instead
105-
console.log(`Received job status: ${JSON.stringify(msg)}`);
105+
// console.log(`Received job status: ${JSON.stringify(msg)}`);
106106

107107
const jobSerializer = new TypedJSON(JobStatusDTO);
108108
const jobStatus = jobSerializer.parse(msg);

0 commit comments

Comments
 (0)