Enable noUnusedParameters option for vscode extension

This commit is contained in:
Tetsuharu OHZEKI 2019-12-12 00:41:16 +09:00
parent 1434849222
commit b21bb44c8d
5 changed files with 8 additions and 5 deletions

View file

@ -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();