diff --git a/ROADMAP.md b/ROADMAP.md index 9985299..9e60f6a 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -537,7 +537,7 @@ - [ ] "dot-location" - [ ] "eqeqeq" - [X] "html-closing-bracket-newline" -- [ ] "html-closing-bracket-spacing" +- [X] "html-closing-bracket-spacing" - [ ] "html-end-tags" - [X] "html-indent" - [X] "html-quotes" diff --git a/src/rules/vue/default.json b/src/rules/vue/default.json index e15ac29..07aaf6a 100644 --- a/src/rules/vue/default.json +++ b/src/rules/vue/default.json @@ -24,6 +24,14 @@ "singleline": "never" } ], + "vue/html-closing-bracket-spacing": [ + "error", + { + "endTag": "never", + "selfClosingTag": "always", + "startTag": "never" + } + ], "vue/html-indent": [ "error", "tab",