Skip to content

Commit

Permalink
Format ts
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscerie committed Oct 16, 2023
1 parent d5684b8 commit ff082cf
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions selene-vscode/src/structures/diagnostic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,15 @@ export interface Diagnostic {
}

export class SeleneDiagnostic extends vscode.Diagnostic {
fixed_code?: string;
fixed_code?: string

constructor(range: vscode.Range, message: string, severity: vscode.DiagnosticSeverity, fixed_code?: string) {
super(range, message, severity);
this.fixed_code = fixed_code;
constructor(
range: vscode.Range,
message: string,
severity: vscode.DiagnosticSeverity,
fixed_code?: string,
) {
super(range, message, severity)
this.fixed_code = fixed_code
}
}

0 comments on commit ff082cf

Please sign in to comment.