mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 05:45:12 +00:00
Enable noUnusedParameters option for vscode extension
This commit is contained in:
parent
1434849222
commit
b21bb44c8d
5 changed files with 8 additions and 5 deletions
|
@ -178,7 +178,7 @@ export async function startCargoWatch(
|
|||
}
|
||||
|
||||
const label = 'install-cargo-watch';
|
||||
const taskFinished = new Promise((resolve, reject) => {
|
||||
const taskFinished = new Promise((resolve, _reject) => {
|
||||
const disposable = vscode.tasks.onDidEndTask(({ execution }) => {
|
||||
if (execution.task.name === label) {
|
||||
disposable.dispose();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue