Skip to content

Commit

Permalink
Make error/warning output more useful (#2161)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed May 15, 2017
1 parent 9e733b5 commit f87e613
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 24 deletions.
7 changes: 4 additions & 3 deletions packages/react-dev-utils/eslintFormatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ function formatter(results) {
}

let line = message.line || 0;
let position = chalk.dim(`Line ${line}:`);
let position = chalk.bold('Line ' + line + ':');
return [
'',
position,
messageType,
message.message.replace(/\.$/, ''),
chalk.cyan(message.ruleId || ''),
chalk.underline(message.ruleId || ''),
];
});

Expand All @@ -47,7 +47,8 @@ function formatter(results) {

// add color to messageTypes
messages.forEach(m => {
m[2] = m[2] === 'error' ? chalk.red(m[2]) : chalk.yellow(m[2]);
m[3] = m[2] === 'error' ? chalk.red(m[3]) : chalk.yellow(m[3]);
m.splice(2, 1);
});

let outputTable = table(messages, {
Expand Down
12 changes: 1 addition & 11 deletions packages/react-dev-utils/formatWebpackMessages.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,7 @@ function formatMessage(message, isError) {
);
}

// Make filename nicer.
var slashIndex = Math.max(
lines[0].lastIndexOf('/'),
lines[0].lastIndexOf('\\')
);
var fileName = lines[0].substring(slashIndex + 1);
var path = lines[0].substring(0, slashIndex + 1);
lines[0] = chalk.dim(isError ? 'Found errors in ' : 'Found warnings in ') +
path +
(isError ? chalk.red : chalk.yellow)(fileName) +
chalk.dim(':');
lines[0] = chalk.inverse(lines[0]);

// Reassemble the message.
message = lines.join('\n');
Expand Down
16 changes: 6 additions & 10 deletions packages/react-scripts/scripts/utils/createWebpackCompiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,14 @@ module.exports = function createWebpackCompiler(config, onReadyCallback) {

// Teach some ESLint tricks.
console.log(
chalk.dim(
'Search for the ' +
chalk.cyan('rule keywords') +
' to learn more about each warning.'
)
'Search for the ' +
chalk.underline('rule keywords') +
' to learn more about each warning.'
);
console.log(
chalk.dim(
'To ignore, add ' +
chalk.yellow('// eslint-disable-next-line') +
' to the previous line.'
)
'To ignore, add ' +
chalk.yellow('// eslint-disable-next-line') +
' to the previous line.'
);
console.log();
}
Expand Down

0 comments on commit f87e613

Please sign in to comment.