From e6c5be228db186930a494dca167880284b5f63c1 Mon Sep 17 00:00:00 2001 From: Jesse Smith Date: Wed, 16 Mar 2016 15:21:18 -0700 Subject: [PATCH] fix lint issue by ammending rule --- .eslintrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 6f9f9cd8..34a4aabb 100644 --- a/.eslintrc +++ b/.eslintrc @@ -149,7 +149,9 @@ "no-undefined": [0], "no-underscore-dangle": [0], "no-unreachable": [2], - "no-unused-expressions": [2], + "no-unused-expressions": [2, { + "allowShortCircuit": true + }], "no-unused-vars": [1, { "vars": "all", "args": "after-used"