File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
2020- Snippets: All snippets that reference schemas updated to use ` v1.3.0 ` schema
2121
22+ ### Fixed:
23+
24+ - Diagnostics: Fixed issue where unknown plugins would cause validation errors and incorrectly show "At least one plugin must be enabled" warning
25+
2226## [ 1.6.0] - 2025-10-13
2327
2428### Changed:
Original file line number Diff line number Diff line change @@ -168,6 +168,11 @@ const validatePluginConfigurations = (
168168 . value as boolean ;
169169 const pluginSnippet = pluginSnippets [ pluginName ] ;
170170
171+ // Skip validation for unknown plugins
172+ if ( ! pluginSnippet ) {
173+ return ;
174+ }
175+
171176 checkPluginConfiguration (
172177 pluginNode ,
173178 diagnostics ,
You can’t perform that action at this time.
0 commit comments