Skip to content

Commit 196bd79

Browse files
committed
src/goDeveloperSurvey: fix lint
Change-Id: Iafcb8696438eba31dcf8296bb2b2cef286e83c24 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/464097 Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com> TryBot-Result: kokoro <noreply+kokoro@google.com> Reviewed-by: Jamal Carvalho <jamal@golang.org>
1 parent 32a643f commit 196bd79

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/goDeveloperSurvey.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import vscode = require('vscode');
1010
import { getGoConfig } from './config';
1111
import { daysBetween, flushSurveyConfig, getStateConfig, minutesBetween, timeMinute } from './goSurvey';
1212
import { GoExtensionContext } from './context';
13-
import { getGoVersion } from './util';
1413

1514
// Start and end dates of the survey.
1615
export const startDate = new Date('Jan 18 2023 00:00:00 GMT');
@@ -140,7 +139,7 @@ by participating in this 10-minute Go Developer Survey (2023 Winter) before ${en
140139
{
141140
cfg.lastDateAccepted = now;
142141
cfg.prompt = true;
143-
const surveyURL = `https://google.qualtrics.com/jfe/form/SV_bNnbAtFZ0vfRTH8?s=p`;
142+
const surveyURL = 'https://google.qualtrics.com/jfe/form/SV_bNnbAtFZ0vfRTH8?s=p';
144143
await vscode.env.openExternal(vscode.Uri.parse(surveyURL));
145144
}
146145
break;

0 commit comments

Comments
 (0)