We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e802be4 + c387b94 commit 2cc5297Copy full SHA for 2cc5297
bin/eslint.js
@@ -80,7 +80,7 @@ function exclusionBasedFileListBuilder(excludePaths) {
80
allFiles.forEach(function(file, i, a){
81
if(excludePaths.indexOf(file.split("/code/")[1]) < 0) {
82
if(fs.lstatSync(file).isFile()) {
83
- if (!isFileIgnoredByLibrary(file) && isFileWithMatchingExtension(file)) {
+ if (!isFileIgnoredByLibrary(file) && isFileWithMatchingExtension(file, extensions)) {
84
analysisFiles.push(file);
85
}
86
0 commit comments