Skip to content

Commit c45e5a6

Browse files
committed
update
1 parent f3f2ae4 commit c45e5a6

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

docs/rules/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ The following rules extend the rules provided by ESLint itself and apply them to
322322
| [vue/no-constant-condition] | Disallow constant expressions in conditions in `<template>` | | :warning: |
323323
| [vue/no-empty-pattern] | Disallow empty destructuring patterns in `<template>` | | :warning: |
324324
| [vue/no-extra-parens] | Disallow unnecessary parentheses in `<template>` | :wrench: | :lipstick: |
325+
| [vue/no-implicit-coercion] | Disallow shorthand type conversions in `<template>` | :wrench: | :hammer: |
325326
| [vue/no-irregular-whitespace] | disallow irregular whitespace in `.vue` files | | :warning: |
326327
| [vue/no-loss-of-precision] | Disallow literal numbers that lose precision in `<template>` | | :warning: |
327328
| [vue/no-restricted-syntax] | Disallow specified syntax in `<template>` | | :hammer: |
@@ -455,6 +456,7 @@ The following rules extend the rules provided by ESLint itself and apply them to
455456
[vue/no-export-in-script-setup]: ./no-export-in-script-setup.md
456457
[vue/no-expose-after-await]: ./no-expose-after-await.md
457458
[vue/no-extra-parens]: ./no-extra-parens.md
459+
[vue/no-implicit-coercion]: ./no-implicit-coercion.md
458460
[vue/no-irregular-whitespace]: ./no-irregular-whitespace.md
459461
[vue/no-lifecycle-after-await]: ./no-lifecycle-after-await.md
460462
[vue/no-lone-template]: ./no-lone-template.md

docs/rules/no-implicit-coercion.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ description: Disallow shorthand type conversions in `<template>`
99

1010
> Disallow shorthand type conversions in `<template>`
1111
12-
- :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.
12+
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> _**This rule has not been released yet.**_ </badge>
13+
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fix-problems) can automatically fix some of the problems reported by this rule.
1314

1415
This rule is the same rule as core [no-implicit-coercion] rule but it applies to the expressions in `<template>`.
1516

@@ -19,10 +20,6 @@ This rule is the same rule as core [no-implicit-coercion] rule but it applies to
1920

2021
[no-implicit-coercion]: https://eslint.org/docs/rules/no-implicit-coercion
2122

22-
## :rocket: Version
23-
24-
This rule was introduced in eslint-plugin-vue v9.33.0
25-
2623
## :mag: Implementation
2724

2825
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-implicit-coercion.js)

0 commit comments

Comments
 (0)