From a1d1a56dcf7837d58a6dbd2a478f4dfc51e7d4df Mon Sep 17 00:00:00 2001 From: Martin Kraft Date: Thu, 14 Jun 2018 09:31:14 -0400 Subject: [PATCH] Disables ESLint 'complexity' rule. (#1769) --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 0ab12801f..f3a7fd4d1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -46,7 +46,7 @@ "comma-dangle": [2, "always-multiline"], "comma-spacing": [2, {"before": false, "after": true}], "comma-style": [2, "last"], - "complexity": [1, 10], + "complexity": [0, 10], "computed-property-spacing": [2, "never"], "consistent-return": 2, "consistent-this": [2, "self"],