fix indent

This commit is contained in:
2021-12-06 21:40:31 +03:00
parent f305cdd7c3
commit eee833f62e

View File

@@ -23,38 +23,38 @@ export async function activate() {
return; return;
} }
repository.state.remotes.forEach(async remote => { repository.state.remotes.forEach(async remote => {
const pushUrl = remote.pushUrl; const pushUrl = remote.pushUrl;
if (pushUrl && pushUrl.includes(domain)) { if (pushUrl && pushUrl.includes(domain)) {
var gitConfig = await repository.getConfigs(); var gitConfig = await repository.getConfigs();
var gitUser:string = ""; var gitUser:string = "";
var gitEmail:string = ""; var gitEmail:string = "";
gitConfig = gitConfig.filter( elem => { gitConfig = gitConfig.filter( elem => {
return elem.key === "user.name" || elem.key === "user.email"; return elem.key === "user.name" || elem.key === "user.email";
}); });
if (gitConfig.length === 0) { if (gitConfig.length === 0) {
vscode.window.showErrorMessage("Missing user creds in git"); vscode.window.showErrorMessage("Missing user creds in git");
return; return;
}
gitConfig.forEach(c => {
switch (c.key) {
case "user.name":
gitUser = c.value;
break;
case "user.email":
gitEmail = c.value;
break;
default:
console.log(c.key);
}
});
if (gitUser !== user || gitEmail !== email) {
vscode.window.showErrorMessage("Wrong user creds in git");
}
} }
}); gitConfig.forEach(c => {
switch (c.key) {
case "user.name":
gitUser = c.value;
break;
case "user.email":
gitEmail = c.value;
break;
default:
console.log(c.key);
}
});
if (gitUser !== user || gitEmail !== email) {
vscode.window.showErrorMessage("Wrong user creds in git");
}
}
});
} }
export function deactivate() {} export function deactivate() {}