From 660790b46b3747fdeac25ec9a06be43ffc8ef68d Mon Sep 17 00:00:00 2001 From: Markus Willems Date: Fri, 12 May 2017 18:43:49 +0200 Subject: [PATCH] fix for wrong rule syntax. no-unused-prop-types instead of react/no-unused-prop-types in docs --- docs/rules/no-unused-prop-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-unused-prop-types.md b/docs/rules/no-unused-prop-types.md index 6ca0c66e33..f4982abdc7 100644 --- a/docs/rules/no-unused-prop-types.md +++ b/docs/rules/no-unused-prop-types.md @@ -47,7 +47,7 @@ This rule can take one argument to ignore some specific props during validation. ``` ... -"no-unused-prop-types": [, { customValidators: , skipShapeProps: }] +"react/no-unused-prop-types": [, { customValidators: , skipShapeProps: }] ... ```