File tree Expand file tree Collapse file tree 4 files changed +14
-12
lines changed Expand file tree Collapse file tree 4 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,17 @@ Deprecated rules witch should be used with caution and only enabled when you kno
62
62
63
63
<!-- RULES_TABLE_START-->
64
64
65
+ ### Stylistic Issues
66
+
67
+ | | Rule ID | Description |
68
+ | :---| :--------| :------------|
69
+ | :wrench : | [ attribute-hyphenation] ( ./docs/rules/attribute-hyphenation.md ) | Define a style for the props casing in templates. |
70
+ | | [ html-quotes] ( ./docs/rules/html-quotes.md ) | enforce quotes style of HTML attributes. |
71
+ | :wrench : | [ name-property-casing] ( ./docs/rules/name-property-casing.md ) | Requires specific casing for the name property in Vue components |
72
+ | :wrench : | [ v-bind-style] ( ./docs/rules/v-bind-style.md ) | enforce ` v-bind ` directive style. |
73
+ | :wrench : | [ v-on-style] ( ./docs/rules/v-on-style.md ) | enforce ` v-on ` directive style. |
74
+
75
+
65
76
### Best Practices
66
77
67
78
| | Rule ID | Description |
@@ -79,16 +90,6 @@ Deprecated rules witch should be used with caution and only enabled when you kno
79
90
| :white_check_mark : | [ require-v-for-key] ( ./docs/rules/require-v-for-key.md ) | require ` v-bind:key ` with ` v-for ` directives. |
80
91
81
92
82
- ### Stylistic Issues
83
-
84
- | | Rule ID | Description |
85
- | :---| :--------| :------------|
86
- | | [ html-quotes] ( ./docs/rules/html-quotes.md ) | enforce quotes style of HTML attributes. |
87
- | :wrench : | [ name-property-casing] ( ./docs/rules/name-property-casing.md ) | Requires specific casing for the name property in Vue components |
88
- | :wrench : | [ v-bind-style] ( ./docs/rules/v-bind-style.md ) | enforce ` v-bind ` directive style. |
89
- | :wrench : | [ v-on-style] ( ./docs/rules/v-on-style.md ) | enforce ` v-on ` directive style. |
90
-
91
-
92
93
### Variables
93
94
94
95
| | Rule ID | Description |
Original file line number Diff line number Diff line change 4
4
* in order to update it's content execute "npm run update"
5
5
*/
6
6
module . exports = {
7
+ "vue/attribute-hyphenation" : "off" ,
7
8
"vue/html-end-tags" : "off" ,
8
9
"vue/html-no-self-closing" : "off" ,
9
10
"vue/html-quotes" : "off" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " eslint-plugin-vue" ,
3
- "version" : " 3.8 .0" ,
3
+ "version" : " 3.9 .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