Skip to content

Commit 5e35645

Browse files
committed
Focus on line in eslint messages
1 parent 21349c5 commit 5e35645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-dev-utils/eslintFormatter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function formatter(results) {
3131

3232
let line = message.line || 0;
3333
let column = message.column || 0;
34-
let position = chalk.dim(`${line}:${column}`);
34+
let position = chalk.dim(`Line ${line}:`);
3535
return [
3636
'',
3737
position,

0 commit comments

Comments
 (0)