We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48452a4 commit 6865800Copy full SHA for 6865800
packages/plugin-eslint/src/lib/nx/utils.ts
@@ -25,7 +25,7 @@ export function getLintFilePatterns(project: ProjectConfiguration): string[] {
25
| { lintFilePatterns?: string | string[] }
26
| undefined;
27
return options?.lintFilePatterns == null
28
- ? [project.root] // lintFilePatterns defaults to ["{projectRoot}"] - https://github.com/nrwl/nx/pull/20313
+ ? [`${project.root}/**/*`] // lintFilePatterns defaults to ["{projectRoot}"] - https://github.com/nrwl/nx/pull/20313
29
: toArray(options.lintFilePatterns);
30
}
31
0 commit comments