Skip to content

Commit

Permalink
fix(golangci-lint): typo to declare install order
Browse files Browse the repository at this point in the history
  • Loading branch information
guiyomh committed Nov 30, 2023
1 parent a73dea0 commit 1a15966
Showing 1 changed file with 38 additions and 38 deletions.
76 changes: 38 additions & 38 deletions src/golangci-lint/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -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"
]
}

0 comments on commit 1a15966

Please sign in to comment.