vscode-gitflow
vscode-gitflow copied to clipboard
Suggest other way to write some code
Instead of
const commands = [
...
];
disposables.push(...commands);
one can simply use
disposables.push(
...
);