提交 1b4e2b8f 编写于 作者: T Tomas Vik

Merge branch 'fix-eslint-rules-that-broke-master' into 'main'

chore: fix eslint errors that got to master from outdated MR

See merge request gitlab-org/gitlab-vscode-extension!269
......@@ -68,7 +68,7 @@ export async function createSnippet() {
const editor = vscode.window.activeTextEditor;
if (!editor) {
vscode.window.showInformationMessage('GitLab Workflow: No open file.');
await vscode.window.showInformationMessage('GitLab Workflow: No open file.');
return;
}
const repository = await gitExtensionWrapper.getActiveRepositoryOrSelectOne();
......@@ -76,7 +76,7 @@ export async function createSnippet() {
const project = await repository.getProject();
if (!project) {
vscode.window.showInformationMessage(
await vscode.window.showInformationMessage(
'GitLab Workflow: Repository does not contain GitLab project.',
);
return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册