From f85547a961800ba568c9b52c90060b2006c00c84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20D=C3=A1nyi?= Date: Mon, 8 Oct 2018 16:17:24 +0200 Subject: [PATCH] Docs: Add 'When Not To Use' section to space-infix-ops (#10931) --- docs/rules/space-infix-ops.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/rules/space-infix-ops.md b/docs/rules/space-infix-ops.md index f0381877deb..406e2030cf4 100644 --- a/docs/rules/space-infix-ops.md +++ b/docs/rules/space-infix-ops.md @@ -73,3 +73,7 @@ var {a = 0} = bar; function foo(a = 0) { } ``` + +## When Not To Use It + +You can turn this rule off if you are not concerned with the consistency of spacing around infix operators.