Skip to content

Commit 8a5263d

Browse files
suzmuehyangah
authored andcommitted
package.json: update gopls settings for v0.7.5
Change-Id: I92a6d7147f2230134d47ec8e70ebc982e2e4251f Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/380195 Trust: Suzy Mueller <[email protected]> Run-TryBot: Suzy Mueller <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Hyang-Ah Hana Kim <[email protected]>
1 parent e79a488 commit 8a5263d

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

docs/settings.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,6 @@ templateExtensions gives the extensions of file names that are treateed
613613
as template files. (The extension
614614
is the part of the file name after the final dot.)
615615

616-
617-
Default: `["tmpl", "gotmpl"]`
618616
### `formatting.gofumpt`
619617

620618
gofumpt indicates if we should run gofumpt formatting.

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2069,10 +2069,7 @@
20692069
"build.templateExtensions": {
20702070
"type": "array",
20712071
"markdownDescription": "templateExtensions gives the extensions of file names that are treateed\nas template files. (The extension\nis the part of the file name after the final dot.)\n",
2072-
"default": [
2073-
"tmpl",
2074-
"gotmpl"
2075-
],
2072+
"default": [],
20762073
"scope": "resource"
20772074
},
20782075
"formatting.gofumpt": {

src/goToolsInformation.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ export const allToolsInformation: { [key: string]: Tool } = {
203203
description: 'Language Server from Google',
204204
usePrereleaseInPreviewMode: true,
205205
minimumGoVersion: semver.coerce('1.12'),
206-
latestVersion: semver.parse('v0.7.4'),
207-
latestVersionTimestamp: moment('2021-12-09', 'YYYY-MM-DD'),
208-
latestPrereleaseVersion: semver.parse('v0.7.5-pre.1'),
206+
latestVersion: semver.parse('v0.7.5'),
207+
latestVersionTimestamp: moment('2022-01-18', 'YYYY-MM-DD'),
208+
latestPrereleaseVersion: semver.parse('v0.7.5'),
209209
latestPrereleaseVersionTimestamp: moment('2022-01-18', 'YYYY-MM-DD')
210210
},
211211
'dlv': {

0 commit comments

Comments
 (0)