File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
code-quality/languages/cpp Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ export class CPPQualityVisitor
71
71
return true ;
72
72
}
73
73
74
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
74
75
// @ts -ignore
75
76
private isCamelCase ( text : string ) : boolean {
76
77
const camelCaseRegex = / ^ [ a - z ] [ a - z A - Z 0 - 9 ] * $ / ;
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ export class SubmissionsService {
102
102
} )
103
103
public async handleJobStatus ( msg : string ) : Promise < void > {
104
104
// TODO: use logger instead
105
- console . log ( `Received job status: ${ JSON . stringify ( msg ) } ` ) ;
105
+ // console.log(`Received job status: ${JSON.stringify(msg)}`);
106
106
107
107
const jobSerializer = new TypedJSON ( JobStatusDTO ) ;
108
108
const jobStatus = jobSerializer . parse ( msg ) ;
You can’t perform that action at this time.
0 commit comments