diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-19 14:02:53 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-19 14:02:53 +0300 |
commit | b4225e342471be0ca478f3220d4414184d7cfdb7 (patch) | |
tree | 42a7dbc4bafea4db06af6cfc7862ac6d12fedd9d | |
parent | dfac7f513816657c89b512fead190607129695e9 (diff) | |
download | eslint-config-b4225e342471be0ca478f3220d4414184d7cfdb7.tar.xz eslint-config-b4225e342471be0ca478f3220d4414184d7cfdb7.zip |
feat(vue): comma-dangle
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/vue/default.json | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -529,7 +529,7 @@ - [ ] "block-spacing" - [ ] "brace-style" - [ ] "camelcase" -- [ ] "comma-dangle" +- [X] "comma-dangle" - [ ] "comment-directive" - [ ] "component-definition-name-casing" - [ ] "component-name-in-template-casing" diff --git a/src/rules/vue/default.json b/src/rules/vue/default.json index 5371734..d0097a1 100644 --- a/src/rules/vue/default.json +++ b/src/rules/vue/default.json @@ -17,6 +17,10 @@ ] } ], + "vue/comma-dangle": [ + "error", + "always-multiline" + ], "vue/html-closing-bracket-newline": [ "error", { |