Skip to content

Commit

Permalink
change && to ||
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Brignull committed Jun 11, 2020
1 parent 1f2cca0 commit 8425341
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 8425341

Please sign in to comment.