eslint comma-dangle warning

This commit is contained in:
tophf 2020-11-14 09:59:45 +03:00
parent d0bb996e1e
commit 5a9451f267

View File

@ -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]