Focus on line in eslint messages

This commit is contained in:
Dan Abramov
2017-05-15 01:15:58 +01:00
parent 21349c542b
commit 5e35645b95

View File

@@ -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,