Skip to content

Commit

Permalink
Merge pull request #57 from github/fixIsInterpretedLanguage
Browse files Browse the repository at this point in the history
Fix the login in the isInterpretedLanguage method
  • Loading branch information
Robert authored and GitHub committed Jun 15, 2020
2 parents 6bd7f17 + f9ef310 commit 476c8a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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 src/analysis-paths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function includeAndExcludeAnalysisPaths(config: configUtils.Config, langu
}

function isInterpretedLanguage(language): boolean {
return language === 'javascript' && language === 'python';
return language === 'javascript' || language === 'python';
}

// Index include/exclude only work in javascript and python
Expand Down

0 comments on commit 476c8a4

Please sign in to comment.