Skip to content

Commit e06fb82

Browse files
committed
3.7.0
1 parent b7e6ff1 commit e06fb82

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ The `--fix` option on the command line automatically fixes problems reported by
6868
| :wrench: | [html-no-self-closing](./docs/rules/html-no-self-closing.md) | disallow self-closing elements. |
6969
| :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. |
7070
| | [no-duplicate-attributes](./docs/rules/no-duplicate-attributes.md) | disallow duplicate attributes. |
71+
| | [no-side-effects-in-computed-properties](./docs/rules/no-side-effects-in-computed-properties.md) | Don't introduce side effects in computed properties |
7172
| :white_check_mark: | [no-textarea-mustache](./docs/rules/no-textarea-mustache.md) | disallow mustaches in `<textarea>`. |
7273
| | [order-in-components](./docs/rules/order-in-components.md) | Keep order of properties in components |
7374
| :white_check_mark: | [require-component-is](./docs/rules/require-component-is.md) | require `v-bind:is` of `<component>` elements. |
@@ -110,6 +111,7 @@ The `--fix` option on the command line automatically fixes problems reported by
110111
| :white_check_mark: | [no-invalid-v-text](./docs/rules/no-invalid-v-text.md) | disallow invalid `v-text` directives. |
111112
| :white_check_mark: | [no-parsing-error](./docs/rules/no-parsing-error.md) | disallow parsing errors in `<template>`. |
112113
| | [no-template-key](./docs/rules/no-template-key.md) | disallow `key` attribute on `<template>`. |
114+
| | [return-in-computed-property](./docs/rules/return-in-computed-property.md) | Enforces that a return statement is present in computed property. |
113115

114116
<!--RULES_TABLE_END-->
115117

lib/recommended-rules.js

+2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ module.exports = {
2525
"vue/no-invalid-v-show": "error",
2626
"vue/no-invalid-v-text": "error",
2727
"vue/no-parsing-error": "error",
28+
"vue/no-side-effects-in-computed-properties": "off",
2829
"vue/no-template-key": "off",
2930
"vue/no-textarea-mustache": "error",
3031
"vue/order-in-components": "off",
3132
"vue/require-component-is": "error",
3233
"vue/require-v-for-key": "error",
34+
"vue/return-in-computed-property": "off",
3335
"vue/v-bind-style": "off",
3436
"vue/v-on-style": "off"
3537
}

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

0 commit comments

Comments
 (0)