Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 762e967

Browse files
committed
Change LintResult to an interface
1 parent 327afd3 commit 762e967

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/language-server-ruby/src/Linter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ const LINTER_MAP = {
1818
standard: Standard,
1919
};
2020

21-
export type LintResult = {
21+
export interface LintResult {
2222
document: TextDocument;
2323
diagnostics: Diagnostic[];
2424
error?: string;
25-
};
25+
}
2626

2727
function getLinter(
2828
name: string,

0 commit comments

Comments
 (0)