remove panicbit.cargo extension warning

This commit is contained in:
panicbit 2024-06-19 15:36:51 +02:00
parent 327372466e
commit 792155e790

View file

@ -204,14 +204,4 @@ function checkConflictingExtensions() {
)
.then(() => {}, console.error);
}
if (vscode.extensions.getExtension("panicbit.cargo")) {
vscode.window
.showWarningMessage(
`You have both the rust-analyzer (rust-lang.rust-analyzer) and Cargo (panicbit.cargo) plugins enabled, ` +
'you can disable it or set {"cargo.automaticCheck": false} in settings.json to avoid invoking cargo twice',
"Got it",
)
.then(() => {}, console.error);
}
}