File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ The `--fix` option on the command line automatically fixes problems reported by
65
65
| | Rule ID | Description |
66
66
| :---| :--------| :------------|
67
67
| :wrench : | [ html-end-tags] ( ./docs/rules/html-end-tags.md ) | enforce end tag style. |
68
- | :white_check_mark :: wrench : | [ html-no-self-closing] ( ./docs/rules/html-no-self-closing.md ) | disallow self-closing elements. |
68
+ | :wrench : | [ html-no-self-closing] ( ./docs/rules/html-no-self-closing.md ) | disallow self-closing elements. |
69
69
| :white_check_mark : | [ no-confusing-v-for-v-if] ( ./docs/rules/no-confusing-v-for-v-if.md ) | disallow confusing ` v-for ` and ` v-if ` on the same element. |
70
70
| | [ no-duplicate-attributes] ( ./docs/rules/no-duplicate-attributes.md ) | disallow duplicate arguments. |
71
71
| :white_check_mark : | [ no-textarea-mustache] ( ./docs/rules/no-textarea-mustache.md ) | disallow mustaches in ` <textarea> ` . |
Original file line number Diff line number Diff line change 5
5
*/
6
6
module . exports = {
7
7
"vue/html-end-tags" : "off" ,
8
- "vue/html-no-self-closing" : "error " ,
8
+ "vue/html-no-self-closing" : "off " ,
9
9
"vue/html-quotes" : "off" ,
10
10
"vue/jsx-uses-vars" : "error" ,
11
11
"vue/no-confusing-v-for-v-if" : "error" ,
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ module.exports = {
49
49
docs : {
50
50
description : 'disallow self-closing elements.' ,
51
51
category : 'Best Practices' ,
52
- recommended : true
52
+ recommended : false
53
53
} ,
54
54
fixable : 'code' ,
55
55
schema : [ ]
You can’t perform that action at this time.
0 commit comments