From ff082cff6088779221c61489bcd1f6d47c076e35 Mon Sep 17 00:00:00 2001 From: Christopher Chang <51393127+chriscerie@users.noreply.github.com> Date: Mon, 16 Oct 2023 12:31:55 -0700 Subject: [PATCH] Format ts --- selene-vscode/src/structures/diagnostic.ts | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/selene-vscode/src/structures/diagnostic.ts b/selene-vscode/src/structures/diagnostic.ts index e3e67d77..72d8db1f 100644 --- a/selene-vscode/src/structures/diagnostic.ts +++ b/selene-vscode/src/structures/diagnostic.ts @@ -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 } }