File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ The `--fix` option on the command line automatically fixes problems reported by
138138| :---| :--------| :------------|
139139| :wrench : | [ attribute-hyphenation] ( ./docs/rules/attribute-hyphenation.md ) | Define a style for the props casing in templates. |
140140| | [ html-quotes] ( ./docs/rules/html-quotes.md ) | enforce quotes style of HTML attributes. |
141+ | :wrench : | [ html-self-closing] ( ./docs/rules/html-self-closing.md ) | enforce self-closing style. |
141142| :wrench : | [ name-property-casing] ( ./docs/rules/name-property-casing.md ) | Requires specific casing for the name property in Vue components |
142143| :wrench : | [ v-bind-style] ( ./docs/rules/v-bind-style.md ) | enforce ` v-bind ` directive style. |
143144| :wrench : | [ v-on-style] ( ./docs/rules/v-on-style.md ) | enforce ` v-on ` directive style. |
@@ -156,7 +157,7 @@ The `--fix` option on the command line automatically fixes problems reported by
156157
157158| Rule ID | Replaced by |
158159| :--------| :------------|
159- | [ html-no-self-closing] ( ./rules/html-no-self-closing.md ) | (no replacement ) |
160+ | [ html-no-self-closing] ( ./rules/html-no-self-closing.md ) | [ html-self-closing-style ] ( ./rules/html-self-closing-style.md ) |
160161| [ no-invalid-template-root] ( ./rules/no-invalid-template-root.md ) | [ valid-template-root] ( ./rules/valid-template-root.md ) |
161162| [ no-invalid-v-bind] ( ./rules/no-invalid-v-bind.md ) | [ valid-v-bind] ( ./rules/valid-v-bind.md ) |
162163| [ no-invalid-v-cloak] ( ./rules/no-invalid-v-cloak.md ) | [ valid-v-cloak] ( ./rules/valid-v-cloak.md ) |
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ module.exports = {
88 "vue/html-end-tags" : "off" ,
99 "vue/html-no-self-closing" : "off" ,
1010 "vue/html-quotes" : "off" ,
11+ "vue/html-self-closing" : "off" ,
1112 "vue/jsx-uses-vars" : "error" ,
1213 "vue/name-property-casing" : "off" ,
1314 "vue/no-async-in-computed-properties" : "off" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " eslint-plugin-vue" ,
3- "version" : " 3.10 .0" ,
3+ "version" : " 3.11 .0" ,
44 "description" : " Official ESLint plugin for Vue.js" ,
55 "main" : " lib/index.js" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments