Skip to content

Commit

Permalink
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/analysis-paths.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/analysis-paths.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/analysis-paths.ts
@@ -4,7 +4,9 @@ import * as configUtils from "./config-utils";
import { Logger } from "./logging";

function isInterpretedLanguage(language): boolean {
return language === "javascript" || language === "python";
return (
language === "javascript" || language === "python" || language === "ruby"
);
}

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

0 comments on commit a1f71cf

Please sign in to comment.