diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/vue/default.json | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -540,7 +540,7 @@ - [ ] "html-closing-bracket-spacing" - [ ] "html-end-tags" - [X] "html-indent" -- [ ] "html-quotes" +- [X] "html-quotes" - [ ] "html-self-closing" - [ ] "jsx-uses-vars" - [ ] "key-spacing" diff --git a/src/rules/vue/default.json b/src/rules/vue/default.json index e7e45eb..fcbce0b 100644 --- a/src/rules/vue/default.json +++ b/src/rules/vue/default.json @@ -9,6 +9,10 @@ "closeBracket": 0 } ], + "vue/html-quotes": [ + "error", + "double" + ], "vue/script-indent": [ "error", "tab", |