change && to ||
This commit is contained in:
parent
1f2cca021a
commit
8425341ae0
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue