From 4c26473187324904463b62c70fd5d4b290b8b7aa Mon Sep 17 00:00:00 2001 From: lily zdansky Date: Thu, 14 Jan 2021 13:47:03 -0500 Subject: [PATCH] Style rules: consistent line breaks between args X-Veo-OpenProject: 3448 --- rules/style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/style.js b/rules/style.js index 95f8af4..8e7a97e 100644 --- a/rules/style.js +++ b/rules/style.js @@ -30,7 +30,7 @@ module.exports = { allowArrowFunctions: true, }, ], - 'function-paren-newline': 'error', // if newline inside function params, place newline between parentheses + 'function-paren-newline': [ 'error', 'consistent' ], // if newline inside function params, place newline between each parameter argument 'id-blacklist': 'off', // no blacklist for variable or function names 'id-length': 'off', // no min or max identifier length