Skip to content

Commit 541c238

Browse files
committed
v3.12.0
1 parent 23d360c commit 541c238

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The `--fix` option on the command line automatically fixes problems reported by
9494
|:---|:--------|:------------|
9595
| | [no-dupe-keys](./docs/rules/no-dupe-keys.md) | Prevents duplication of field names. |
9696
| :white_check_mark: | [no-parsing-error](./docs/rules/no-parsing-error.md) | disallow parsing errors in `<template>`. |
97-
| | [no-reservered-keys](./docs/rules/no-reservered-keys.md) | Prevent overwrite reserved keys. |
97+
| | [no-reserved-keys](./docs/rules/no-reserved-keys.md) | Prevent overwrite reserved keys. |
9898
| | [no-shared-component-data](./docs/rules/no-shared-component-data.md) | Enforces component's data property to be a function. |
9999
| | [no-template-key](./docs/rules/no-template-key.md) | disallow `key` attribute on `<template>`. |
100100
| | [require-render-return](./docs/rules/require-render-return.md) | Enforces render function to always return value. |
@@ -139,7 +139,9 @@ The `--fix` option on the command line automatically fixes problems reported by
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. |
141141
| :wrench: | [html-self-closing](./docs/rules/html-self-closing.md) | enforce self-closing style. |
142+
| | [max-attributes-per-line](./docs/rules/max-attributes-per-line.md) | Define the number of attributes allows per line |
142143
| :wrench: | [name-property-casing](./docs/rules/name-property-casing.md) | Requires specific casing for the name property in Vue components |
144+
| :wrench: | [no-multi-spaces](./docs/rules/no-multi-spaces.md) | This rule warns about the usage of extra whitespaces between attributes |
143145
| :wrench: | [v-bind-style](./docs/rules/v-bind-style.md) | enforce `v-bind` directive style. |
144146
| :wrench: | [v-on-style](./docs/rules/v-on-style.md) | enforce `v-on` directive style. |
145147

@@ -172,6 +174,7 @@ The `--fix` option on the command line automatically fixes problems reported by
172174
| [no-invalid-v-pre](./rules/no-invalid-v-pre.md) | [valid-v-pre](./rules/valid-v-pre.md) |
173175
| [no-invalid-v-show](./rules/no-invalid-v-show.md) | [valid-v-show](./rules/valid-v-show.md) |
174176
| [no-invalid-v-text](./rules/no-invalid-v-text.md) | [valid-v-text](./rules/valid-v-text.md) |
177+
| [no-reservered-keys](./rules/no-reservered-keys.md) | [no-reserved-keys](./rules/no-reserved-keys.md) |
175178

176179
<!--RULES_TABLE_END-->
177180

lib/recommended-rules.js

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module.exports = {
1010
"vue/html-quotes": "off",
1111
"vue/html-self-closing": "off",
1212
"vue/jsx-uses-vars": "error",
13+
"vue/max-attributes-per-line": "off",
1314
"vue/name-property-casing": "off",
1415
"vue/no-async-in-computed-properties": "off",
1516
"vue/no-confusing-v-for-v-if": "error",
@@ -29,7 +30,9 @@ module.exports = {
2930
"vue/no-invalid-v-pre": "off",
3031
"vue/no-invalid-v-show": "off",
3132
"vue/no-invalid-v-text": "off",
33+
"vue/no-multi-spaces": "off",
3234
"vue/no-parsing-error": "error",
35+
"vue/no-reserved-keys": "off",
3336
"vue/no-reservered-keys": "off",
3437
"vue/no-shared-component-data": "off",
3538
"vue/no-side-effects-in-computed-properties": "off",

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.11.0",
3+
"version": "3.12.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)