From 8f9c0fea65b3f42dc6864292013f52abd6cf0677 Mon Sep 17 00:00:00 2001 From: Teddy Katz Date: Mon, 30 Oct 2017 20:44:57 -0400 Subject: [PATCH] Docs: improve id-match usage advice (#9544) --- docs/rules/id-match.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/id-match.md b/docs/rules/id-match.md index 2c6796d5d38..bb56847f3ed 100644 --- a/docs/rules/id-match.md +++ b/docs/rules/id-match.md @@ -83,4 +83,4 @@ do_something(__dirname); ## When Not To Use It -If your rules are too complex, it is possible that you encounter performance issues due to the nature of the job. +If you don't want to enforce any particular naming convention for all identifiers, or your naming convention is too complex to be enforced by configuring this rule, then you should not enable this rule.