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

- Command: Refactored stop command logic
- Diagnostics: Changed check to ensure at least one plugin from Error to Warning

## [0.18.3] - 2025-03-03

Expand Down
4 changes: 2 additions & 2 deletions src/diagnostics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const checkAtLeastOneEnabledPlugin = (pluginNodes: parse.ObjectNode[], diagnosti
new vscode.Diagnostic(
getRangeFromASTNode(pluginsNode),
'Add at least one plugin',
vscode.DiagnosticSeverity.Error
vscode.DiagnosticSeverity.Warning
)
);
} else {
Expand All @@ -199,7 +199,7 @@ const checkAtLeastOneEnabledPlugin = (pluginNodes: parse.ObjectNode[], diagnosti
new vscode.Diagnostic(
getRangeFromASTNode(pluginsNode),
'At least one plugin must be enabled',
vscode.DiagnosticSeverity.Error
vscode.DiagnosticSeverity.Warning
)
);
}
Expand Down