From 5a9451f2673e56c335f1683731565d845e7c014e Mon Sep 17 00:00:00 2001 From: tophf Date: Sat, 14 Nov 2020 09:59:45 +0300 Subject: [PATCH] eslint comma-dangle warning --- .eslintrc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.yml b/.eslintrc.yml index 0871bcad..44284461 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -19,7 +19,7 @@ rules: brace-style: [2, 1tbs, {allowSingleLine: false}] camelcase: [2, {properties: never}] class-methods-use-this: [2] - comma-dangle: [0] + comma-dangle: [1, {arrays: always-multiline, objects: always-multiline}] comma-spacing: [2, {before: false, after: true}] comma-style: [2, last] complexity: [0]