From 1a1596600b53e0313ba3416164c241f7b0b4e0ff Mon Sep 17 00:00:00 2001 From: Guillaume CAMUS Date: Thu, 30 Nov 2023 09:30:44 +0100 Subject: [PATCH] fix(golangci-lint): typo to declare install order --- src/golangci-lint/devcontainer-feature.json | 76 ++++++++++----------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/src/golangci-lint/devcontainer-feature.json b/src/golangci-lint/devcontainer-feature.json index a6fd749..f2e475a 100644 --- a/src/golangci-lint/devcontainer-feature.json +++ b/src/golangci-lint/devcontainer-feature.json @@ -1,39 +1,39 @@ { - "id": "golangci-lint", - "version": "0.1.1", - "name": "golangci-lint", - "description":"Install a fast Go linters", - "options": { - "version": { - "type": "string", - "proposals": [ - "latest", - "v1.50.1", - "v1.49.0", - "v1.48.0", - "v1.47.3", - "v1.46.2", - "v1.45.2", - "v1.44.2", - "v1.43.0", - "v1.42.1", - "v1.41.1" - ], - "default": "latest", - "description": "Select or enter a golangci-lint version to install" - } - }, - "customizations": { - "vscode":{ - "settings": { - "go.lintTool":"golangci-lint", - "go.lintFlags": [ - "--fast" - ] - } - } - }, - "installAfter": [ - "ghcr.io/devcontainers/features/go" - ] -} + "id": "golangci-lint", + "version": "0.1.1", + "name": "golangci-lint", + "description": "Install a fast Go linters", + "options": { + "version": { + "type": "string", + "proposals": [ + "latest", + "v1.50.1", + "v1.49.0", + "v1.48.0", + "v1.47.3", + "v1.46.2", + "v1.45.2", + "v1.44.2", + "v1.43.0", + "v1.42.1", + "v1.41.1" + ], + "default": "latest", + "description": "Select or enter a golangci-lint version to install" + } + }, + "customizations": { + "vscode": { + "settings": { + "go.lintTool": "golangci-lint", + "go.lintFlags": [ + "--fast" + ] + } + } + }, + "installsAfter": [ + "ghcr.io/devcontainers/features/go" + ] +} \ No newline at end of file