Skip to content

Commit 2c19fe0

Browse files
authored
Merge pull request #36 from fatbasstard/devel
Handle Informational rules as Information
2 parents d770c54 + af1e3f2 commit 2c19fe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function convertSeverity(mistakeType: string): DiagnosticSeverity {
9696
switch (mistakeType) {
9797
case "Warning":
9898
return DiagnosticSeverity.Warning;
99-
case "Information":
99+
case "Informational":
100100
return DiagnosticSeverity.Information;
101101
case "Hint":
102102
return DiagnosticSeverity.Hint;

0 commit comments

Comments
 (0)