Skip to content

Commit 47adbb4

Browse files
committed
fix(plugin-eslint): remove path resolved log
1 parent 6c657a5 commit 47adbb4

File tree

1 file changed

+1
-10
lines changed
  • packages/plugin-eslint/src/lib/runner

1 file changed

+1
-10
lines changed

packages/plugin-eslint/src/lib/runner/utils.ts

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
import type { ESLint } from 'eslint';
22
import { glob } from 'glob';
33
import type { PluginArtifactOptions } from '@code-pushup/models';
4-
import {
5-
executeProcess,
6-
pluralizeToken,
7-
readJsonFile,
8-
ui,
9-
} from '@code-pushup/utils';
4+
import { executeProcess, readJsonFile, ui } from '@code-pushup/utils';
105
import type { LinterOutput } from './types.js';
116

127
export async function loadArtifacts(
@@ -36,10 +31,6 @@ export async function loadArtifacts(
3631

3732
const artifactPaths = await glob(initialArtifactPaths);
3833

39-
ui().logger.log(
40-
`ESLint plugin resolved ${initialArtifactPaths.length} ${pluralizeToken('pattern', initialArtifactPaths.length)} to ${artifactPaths.length} eslint ${pluralizeToken('report', artifactPaths.length)}`,
41-
);
42-
4334
return await Promise.all(
4435
artifactPaths.map(async artifactPath => {
4536
// ESLint CLI outputs raw ESLint.LintResult[], but we need LinterOutput format

0 commit comments

Comments
 (0)