We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 010a5d4 commit 3a9f115Copy full SHA for 3a9f115
2 files changed
CHANGELOG.md
@@ -4,6 +4,12 @@ All notable changes to the Docker Language Server will be documented in this fil
4
5
## [Unreleased]
6
7
+### Added
8
+
9
+- Dockerfile
10
+ - textDocument/codeAction
11
+ - `InvalidBaseImagePlatform` warnings can now be ignored with a code action ([#464](https://github.com/docker/docker-language-server/issues/464))
12
13
### Fixed
14
15
- Compose
internal/pkg/buildkit/service.go
@@ -187,6 +187,8 @@ func createIgnoreEdit(ruleName string) *types.NamedEdit {
187
fallthrough
188
case "FromPlatformFlagConstDisallowed":
189
190
+ case "InvalidBaseImagePlatform":
191
+ fallthrough
192
case "InvalidDefaultArgInFrom":
193
194
case "InvalidDefinitionDescription":
0 commit comments