From 19b0a6894587248f61c42e2266c96a727d0120e2 Mon Sep 17 00:00:00 2001 From: Nathan Woltman Date: Sat, 21 Sep 2019 18:38:56 -0400 Subject: [PATCH] Turn off the "function-call-argument-newline" rule Need to wait until eslint/eslint#12123 is resolved. --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 720c6d3..e257e3d 100644 --- a/config.json +++ b/config.json @@ -40,7 +40,7 @@ "for-direction": 2, "func-call-spacing": 2, "func-style": [2, "declaration", {"allowArrowFunctions": true}], - "function-call-argument-newline": [2, "consistent"], + // "function-call-argument-newline": [2, "consistent"], "function-paren-newline": [2, "multiline-arguments"], "generator-star-spacing": [2, { "before": false,