Skip to content

Commit

Permalink
v3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsnik committed Aug 15, 2017
1 parent 23d360c commit 541c238
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -94,7 +94,7 @@ The `--fix` option on the command line automatically fixes problems reported by
|:---|:--------|:------------|
| | [no-dupe-keys](./docs/rules/no-dupe-keys.md) | Prevents duplication of field names. |
| :white_check_mark: | [no-parsing-error](./docs/rules/no-parsing-error.md) | disallow parsing errors in `<template>`. |
| | [no-reservered-keys](./docs/rules/no-reservered-keys.md) | Prevent overwrite reserved keys. |
| | [no-reserved-keys](./docs/rules/no-reserved-keys.md) | Prevent overwrite reserved keys. |
| | [no-shared-component-data](./docs/rules/no-shared-component-data.md) | Enforces component's data property to be a function. |
| | [no-template-key](./docs/rules/no-template-key.md) | disallow `key` attribute on `<template>`. |
| | [require-render-return](./docs/rules/require-render-return.md) | Enforces render function to always return value. |
Expand Down Expand Up @@ -139,7 +139,9 @@ The `--fix` option on the command line automatically fixes problems reported by
| :wrench: | [attribute-hyphenation](./docs/rules/attribute-hyphenation.md) | Define a style for the props casing in templates. |
| | [html-quotes](./docs/rules/html-quotes.md) | enforce quotes style of HTML attributes. |
| :wrench: | [html-self-closing](./docs/rules/html-self-closing.md) | enforce self-closing style. |
| | [max-attributes-per-line](./docs/rules/max-attributes-per-line.md) | Define the number of attributes allows per line |
| :wrench: | [name-property-casing](./docs/rules/name-property-casing.md) | Requires specific casing for the name property in Vue components |
| :wrench: | [no-multi-spaces](./docs/rules/no-multi-spaces.md) | This rule warns about the usage of extra whitespaces between attributes |
| :wrench: | [v-bind-style](./docs/rules/v-bind-style.md) | enforce `v-bind` directive style. |
| :wrench: | [v-on-style](./docs/rules/v-on-style.md) | enforce `v-on` directive style. |

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

<!--RULES_TABLE_END-->

Expand Down
3 changes: 3 additions & 0 deletions lib/recommended-rules.js
Expand Up @@ -10,6 +10,7 @@ module.exports = {
"vue/html-quotes": "off",
"vue/html-self-closing": "off",
"vue/jsx-uses-vars": "error",
"vue/max-attributes-per-line": "off",
"vue/name-property-casing": "off",
"vue/no-async-in-computed-properties": "off",
"vue/no-confusing-v-for-v-if": "error",
Expand All @@ -29,7 +30,9 @@ module.exports = {
"vue/no-invalid-v-pre": "off",
"vue/no-invalid-v-show": "off",
"vue/no-invalid-v-text": "off",
"vue/no-multi-spaces": "off",
"vue/no-parsing-error": "error",
"vue/no-reserved-keys": "off",
"vue/no-reservered-keys": "off",
"vue/no-shared-component-data": "off",
"vue/no-side-effects-in-computed-properties": "off",
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-vue",
"version": "3.11.0",
"version": "3.12.0",
"description": "Official ESLint plugin for Vue.js",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit 541c238

Please sign in to comment.