Skip to content

Commit 7b090ca

Browse files
committed
Merge remote-tracking branch 'origin/tools/custom-eslint-formatter' into tools/custom-eslint-formatter
2 parents 6e0c734 + d37c4a3 commit 7b090ca

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

tools/eslint-multi-format/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Use the `ESLINT_FORMATTER_CONFIG` environment variable to configure the formatte
88

99
### Configuration Schema
1010

11-
```json
11+
```jsonc
1212
{
1313
"outputDir": "./reports", // Optional: Output directory (default: cwd/.eslint)
1414
"filename": "eslint-report", // Optional: Base filename without extension (default: 'eslint-report')

tools/eslint-multi-format/src/lib/utils.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ export function persistEslintReport(
136136
content,
137137
);
138138
if (verbose) {
139-
// eslint-disable-next-line no-console
140-
console.log(`ESLint report (${format}) written to: ${outputDir}`);
139+
console.info(`ESLint report (${format}) written to: ${outputDir}`);
141140
}
142141
return true;
143142
} catch (error_) {

0 commit comments

Comments
 (0)