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.
1 parent 7cba5f3 commit 6fccb20Copy full SHA for 6fccb20
src/eslint-reporter/reporter/EsLintReporter.ts
@@ -21,6 +21,7 @@ function createEsLintReporter(configuration: EsLintReporterConfiguration): Repor
21
22
function isFileIncluded(path: string) {
23
return (
24
+ !path.includes('node_modules') &&
25
includedGlobPatterns.some((pattern) => minimatch(path, pattern)) &&
26
!engine.isPathIgnored(path)
27
);
0 commit comments