Skip to content

Commit 48fc537

Browse files
committed
3.9.0
1 parent 8cac833 commit 48fc537

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

README.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,17 @@ Deprecated rules witch should be used with caution and only enabled when you kno
6262

6363
<!--RULES_TABLE_START-->
6464

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+
6576
### Best Practices
6677

6778
| | Rule ID | Description |
@@ -79,16 +90,6 @@ Deprecated rules witch should be used with caution and only enabled when you kno
7990
| :white_check_mark: | [require-v-for-key](./docs/rules/require-v-for-key.md) | require `v-bind:key` with `v-for` directives. |
8091

8192

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-
9293
### Variables
9394

9495
| | Rule ID | Description |

lib/recommended-rules.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* in order to update it's content execute "npm run update"
55
*/
66
module.exports = {
7+
"vue/attribute-hyphenation": "off",
78
"vue/html-end-tags": "off",
89
"vue/html-no-self-closing": "off",
910
"vue/html-quotes": "off",

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-vue",
3-
"version": "3.8.0",
3+
"version": "3.9.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)