We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61d99e3 commit 31a9fd0Copy full SHA for 31a9fd0
messages/eslintrc-plugins.js
@@ -5,9 +5,13 @@ module.exports = function({ plugins }) {
5
const isArrayOfStrings = typeof plugins[0] === "string";
6
7
return `
8
-A config object has a "plugins" key defined as an array${isArrayOfStrings ? " of strings" : ""}.
+A config object has a "plugins" key defined as an array${isArrayOfStrings ? " of strings" : ""}. It looks something like this:
9
10
-Flat config requires "plugins" to be an object in this form:
+ {
11
+ "plugins": ${JSON.stringify(plugins)}
12
+ }
13
+
14
+Flat config requires "plugins" to be an object, like this:
15
16
{
17
plugins: {
0 commit comments