diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/eslint.json | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -17,7 +17,7 @@ - [ ] "camelcase" - [ ] "capitalized-comments" - [ ] "class-methods-use-this" -- [ ] "comma-dangle" +- [X] "comma-dangle" - [ ] "comma-spacing" - [ ] "comma-style" - [ ] "complexity" diff --git a/src/rules/eslint.json b/src/rules/eslint.json index 0498880..b15bed4 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -1,4 +1,8 @@ { + "comma-dangle": [ + "error", + "always-multiline" + ], "eol-last": [ "error", "always" |