From d1c28f4448b2c869ea6cd7f771cd594b9d6d82a5 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 7 Mar 2017 12:25:49 -0800 Subject: [PATCH] Relax rule: Allow mixing basic operators without parens (+-*/) Fixes: https://github.com/feross/standard/issues/816 --- eslintrc.json | 1 - 1 file changed, 1 deletion(-) diff --git a/eslintrc.json b/eslintrc.json index 9921da50..a4fe7469 100644 --- a/eslintrc.json +++ b/eslintrc.json @@ -89,7 +89,6 @@ "no-lone-blocks": "error", "no-mixed-operators": ["error", { "groups": [ - ["+", "-", "*", "/", "%", "**"], ["==", "!=", "===", "!==", ">", ">=", "<", "<="], ["&&", "||"], ["in", "instanceof"]