We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9da54b5 commit cdd0434Copy full SHA for cdd0434
2 files changed
CHANGELOG.md
@@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
20
- Snippets: All snippets that reference schemas updated to use `v1.3.0` schema
21
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
26
## [1.6.0] - 2025-10-13
27
28
### Changed:
src/diagnostics.ts
@@ -168,6 +168,11 @@ const validatePluginConfigurations = (
168
.value as boolean;
169
const pluginSnippet = pluginSnippets[pluginName];
170
171
+ // Skip validation for unknown plugins
172
+ if (!pluginSnippet) {
173
+ return;
174
+ }
175
176
checkPluginConfiguration(
177
pluginNode,
178
diagnostics,
0 commit comments