Skip to content

Commit dab5478

Browse files
chore: better error message for missing plugin in config (#19402)
* chore: better error message for missing plugin * update error message in test * refactor code for error message * update error message variable name
1 parent 80b0485 commit dab5478

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

lib/config/rule-validator.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ function throwRuleNotFoundError({ pluginName, ruleName }, config) {
3636
const ruleId = pluginName === "@" ? ruleName : `${pluginName}/${ruleName}`;
3737

3838
const errorMessageHeader = `Key "rules": Key "${ruleId}"`;
39-
let errorMessage = `${errorMessageHeader}: Could not find plugin "${pluginName}".`;
39+
40+
let errorMessage = `${errorMessageHeader}: Could not find plugin "${pluginName}" in configuration.`;
41+
42+
const missingPluginErrorMessage = errorMessage;
4043

4144
// if the plugin exists then we need to check if the rule exists
4245
if (config.plugins && config.plugins[pluginName]) {
@@ -63,7 +66,14 @@ function throwRuleNotFoundError({ pluginName, ruleName }, config) {
6366
// falls through to throw error
6467
}
6568

66-
throw new TypeError(errorMessage);
69+
const error = new TypeError(errorMessage);
70+
71+
if (errorMessage === missingPluginErrorMessage) {
72+
error.messageTemplate = "config-plugin-missing";
73+
error.messageData = { pluginName, ruleId };
74+
}
75+
76+
throw error;
6777
}
6878

6979
/**

messages/config-plugin-missing.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"use strict";
2+
3+
module.exports = function(it) {
4+
const { pluginName, ruleId } = it;
5+
6+
return `
7+
Common causes of this problem include:
8+
9+
1. The "${pluginName}" plugin is not defined in your configuration file.
10+
2. The "${pluginName}" plugin is not defined within the same configuration object in which the "${ruleId}" rule is applied.
11+
`.trimStart();
12+
};

tests/lib/config/flat-config-array.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2373,7 +2373,7 @@ describe("FlatConfigArray", () => {
23732373
"doesnt-exist/match": "error"
23742374
}
23752375
}
2376-
], /Key "rules": Key "doesnt-exist\/match": Could not find plugin "doesnt-exist"\./u);
2376+
], /Key "rules": Key "doesnt-exist\/match": Could not find plugin "doesnt-exist" in configuration\./u);
23772377
});
23782378

23792379
it("should error when rule options don't match schema", async () => {

0 commit comments

Comments
 (0)