Skip to content

Commit a3737cf

Browse files
committed
fix lint
1 parent e1fc314 commit a3737cf

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/extension.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<any> {
10451045
RESTDebugPanel.create(context.extensionUri)
10461046
),
10471047
vscode.commands.registerCommand("vscode-objectscript.exportCurrentFile", exportCurrentFile),
1048-
vscode.workspace.onDidCreateFiles((e: vscode.FileCreateEvent) =>{
1048+
vscode.workspace.onDidCreateFiles((e: vscode.FileCreateEvent) => {
10491049
if (!config("autoAdjustName")) return;
10501050
return Promise.all(
10511051
e.files
@@ -1079,9 +1079,8 @@ export async function activate(context: vscode.ExtensionContext): Promise<any> {
10791079
// Write the new content to the file
10801080
return vscode.workspace.fs.writeFile(uri, new TextEncoder().encode(newContent.content.join("\n")));
10811081
})
1082-
)
1083-
}
1084-
),
1082+
);
1083+
}),
10851084
vscode.window.onDidChangeActiveTextEditor((editor: vscode.TextEditor) => {
10861085
if (config("openClassContracted") && editor && editor.document.languageId === "objectscript-class") {
10871086
const uri: string = editor.document.uri.toString();

0 commit comments

Comments
 (0)