Skip to content

Commit c64af6b

Browse files
committed
9.7.0
1 parent a4d37ff commit c64af6b

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

docs/rules/multiline-ternary.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/multiline-ternary
55
description: Enforce newlines between operands of ternary expressions in `<template>`
6+
since: v9.7.0
67
---
78
# vue/multiline-ternary
89

910
> Enforce newlines between operands of ternary expressions in `<template>`
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1313

1414
This rule is the same rule as core [multiline-ternary] rule but it applies to the expressions in `<template>` and `<style>`.
@@ -51,6 +51,10 @@ div {
5151

5252
[multiline-ternary]: https://eslint.org/docs/rules/multiline-ternary
5353

54+
## :rocket: Version
55+
56+
This rule was introduced in eslint-plugin-vue v9.7.0
57+
5458
## :mag: Implementation
5559

5660
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/multiline-ternary.js)

docs/rules/v-on-handler-style.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/v-on-handler-style
55
description: enforce writing style for handlers in `v-on` directives
6+
since: v9.7.0
67
---
78
# vue/v-on-handler-style
89

910
> enforce writing style for handlers in `v-on` directives
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1313

1414
## :book: Rule Details
@@ -213,6 +213,10 @@ This rule aims to enforce a consistent style in `v-on` event handlers:
213213
[Guide - Inline Handlers]: https://vuejs.org/guide/essentials/event-handling.html#inline-handlers
214214
[Guide - Method Handlers]: https://vuejs.org/guide/essentials/event-handling.html#method-handlers
215215

216+
## :rocket: Version
217+
218+
This rule was introduced in eslint-plugin-vue v9.7.0
219+
216220
## :mag: Implementation
217221

218222
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/v-on-handler-style.js)

package.json

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

0 commit comments

Comments
 (0)