Skip to content

Commit 43b819c

Browse files
committed
"rule keywords" => "keywords"
1 parent 55afd86 commit 43b819c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/react-dev-utils/WebpackDevServerUtils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function createCompiler(webpack, config, appName, urls, useYarn) {
159159
// Teach some ESLint tricks.
160160
console.log(
161161
'\nSearch for the ' +
162-
chalk.underline(chalk.yellow('rule keywords')) +
162+
chalk.underline(chalk.yellow('keywords')) +
163163
' to learn more about each warning.'
164164
);
165165
console.log(

packages/react-dev-utils/eslintFormatter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function formatter(results) {
7474
// we can only be sure it's an ESLint error before exiting
7575
// this function.
7676
output += 'Search for the ' +
77-
chalk.underline(chalk.red('rule keywords')) +
77+
chalk.underline(chalk.red('keywords')) +
7878
' to learn more about each error.';
7979
}
8080

packages/react-scripts/scripts/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ measureFileSizesBeforeBuild(paths.appBuild)
6262
console.log(warnings.join('\n\n'));
6363
console.log(
6464
'\nSearch for the ' +
65-
chalk.underline(chalk.yellow('rule keywords')) +
65+
chalk.underline(chalk.yellow('keywords')) +
6666
' to learn more about each warning.'
6767
);
6868
console.log(

0 commit comments

Comments
 (0)