fix incorrect committed rust and run prettier

This commit is contained in:
Adenine 2023-06-19 00:24:42 -04:00
parent cfa15d49aa
commit de5e3cf745
4 changed files with 37 additions and 36 deletions

View file

@ -24,11 +24,11 @@ export async function activate(
vscode.window
.showWarningMessage(
`You have both the rust-analyzer (rust-lang.rust-analyzer) and Rust (rust-lang.rust) ` +
"plugins enabled. These are known to conflict and cause various functions of " +
"both plugins to not work correctly. You should disable one of them.",
"plugins enabled. These are known to conflict and cause various functions of " +
"both plugins to not work correctly. You should disable one of them.",
"Got it"
)
.then(() => { }, console.error);
.then(() => {}, console.error);
}
const ctx = new Ctx(context, createCommands(), fetchWorkspace());
@ -144,7 +144,7 @@ function createCommands(): Record<string, CommandFactory> {
health: "stopped",
});
},
disabled: (_) => async () => { },
disabled: (_) => async () => {},
},
analyzerStatus: { enabled: commands.analyzerStatus },