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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Snippets: All snippets that reference schemas updated to use `v1.3.0` schema

### Fixed:

- Diagnostics: Fixed issue where unknown plugins would cause validation errors and incorrectly show "At least one plugin must be enabled" warning

## [1.6.0] - 2025-10-13

### Changed:
Expand Down
5 changes: 5 additions & 0 deletions src/diagnostics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,11 @@ const validatePluginConfigurations = (
.value as boolean;
const pluginSnippet = pluginSnippets[pluginName];

// Skip validation for unknown plugins
if (!pluginSnippet) {
return;
}

checkPluginConfiguration(
pluginNode,
diagnostics,
Expand Down