File tree 3 files changed +4
-2
lines changed
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
138
138
| :---| :--------| :------------|
139
139
| :wrench : | [ attribute-hyphenation] ( ./docs/rules/attribute-hyphenation.md ) | Define a style for the props casing in templates. |
140
140
| | [ 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. |
141
142
| :wrench : | [ name-property-casing] ( ./docs/rules/name-property-casing.md ) | Requires specific casing for the name property in Vue components |
142
143
| :wrench : | [ v-bind-style] ( ./docs/rules/v-bind-style.md ) | enforce ` v-bind ` directive style. |
143
144
| :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
156
157
157
158
| Rule ID | Replaced by |
158
159
| :--------| :------------|
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 ) |
160
161
| [ no-invalid-template-root] ( ./rules/no-invalid-template-root.md ) | [ valid-template-root] ( ./rules/valid-template-root.md ) |
161
162
| [ no-invalid-v-bind] ( ./rules/no-invalid-v-bind.md ) | [ valid-v-bind] ( ./rules/valid-v-bind.md ) |
162
163
| [ 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 = {
8
8
"vue/html-end-tags" : "off" ,
9
9
"vue/html-no-self-closing" : "off" ,
10
10
"vue/html-quotes" : "off" ,
11
+ "vue/html-self-closing" : "off" ,
11
12
"vue/jsx-uses-vars" : "error" ,
12
13
"vue/name-property-casing" : "off" ,
13
14
"vue/no-async-in-computed-properties" : "off" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " eslint-plugin-vue" ,
3
- "version" : " 3.10 .0" ,
3
+ "version" : " 3.11 .0" ,
4
4
"description" : " Official ESLint plugin for Vue.js" ,
5
5
"main" : " lib/index.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments