Skip to content

Commit

Permalink
fix: dont use white for issue location (#739)
Browse files Browse the repository at this point in the history
Closes: #718
  • Loading branch information
piotr-oles committed May 1, 2022
1 parent f23da17 commit d3f8f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/formatter/webpack-formatter.ts
Expand Up @@ -15,7 +15,7 @@ function createWebpackFormatter(formatter: Formatter): Formatter {
const severity = issue.severity.toUpperCase();

if (issue.file) {
let location = chalk.whiteBright.bold(relativeToContext(issue.file, process.cwd()));
let location = chalk.bold(relativeToContext(issue.file, process.cwd()));
if (issue.location) {
location += ` ${chalk.green.bold(formatIssueLocation(issue.location))}`;
}
Expand Down

0 comments on commit d3f8f6a

Please sign in to comment.