From f702b1a54820d2b4e4993dcded99f551a98b490f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduard=20Bardaj=C3=AD=20Puig?= Date: Fri, 14 Feb 2020 17:58:01 +0200 Subject: [PATCH] Add missing plugin reference (#12796) Rules from plugins need to be namespaced using plugin name, which is missing. --- docs/user-guide/configuring.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/configuring.md b/docs/user-guide/configuring.md index df3e4ca0097..a257e317681 100644 --- a/docs/user-guide/configuring.md +++ b/docs/user-guide/configuring.md @@ -876,7 +876,7 @@ Example of a configuration file in JSON format: "plugin:react/recommended" ], "rules": { - "no-set-state": "off" + "react/no-set-state": "off" } } ```