Skip to content

Commit

Permalink
Focus on line in eslint messages
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed May 15, 2017
1 parent 21349c5 commit 5e35645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-dev-utils/eslintFormatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function formatter(results) {

let line = message.line || 0;
let column = message.column || 0;
let position = chalk.dim(`${line}:${column}`);
let position = chalk.dim(`Line ${line}:`);
return [
'',
position,
Expand Down

0 comments on commit 5e35645

Please sign in to comment.