Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to the Docker Language Server will be documented in this fil

## [Unreleased]

### Added

- Dockerfile
- textDocument/codeAction
- `InvalidBaseImagePlatform` warnings can now be ignored with a code action ([#464](https://github.com/docker/docker-language-server/issues/464))

### Fixed

- Compose
Expand Down
2 changes: 2 additions & 0 deletions internal/pkg/buildkit/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ func createIgnoreEdit(ruleName string) *types.NamedEdit {
fallthrough
case "FromPlatformFlagConstDisallowed":
fallthrough
case "InvalidBaseImagePlatform":
fallthrough
case "InvalidDefaultArgInFrom":
fallthrough
case "InvalidDefinitionDescription":
Expand Down
Loading