Skip to content

Commit a1f71cf

Browse files
committed
Add Ruby to 'isInterpretedLanguage'
1 parent ac402bf commit a1f71cf

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Diff for: lib/analysis-paths.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: lib/analysis-paths.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/analysis-paths.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import * as configUtils from "./config-utils";
44
import { Logger } from "./logging";
55

66
function isInterpretedLanguage(language): boolean {
7-
return language === "javascript" || language === "python";
7+
return (
8+
language === "javascript" || language === "python" || language === "ruby"
9+
);
810
}
911

1012
// Matches a string containing only characters that are legal to include in paths on windows.

0 commit comments

Comments
 (0)