Skip to content

Commit 73ee48f

Browse files
committed
9.19.1
1 parent 1f3111b commit 73ee48f

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Diff for: docs/rules/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ The following rules extend the rules provided by ESLint itself and apply them to
309309
| [vue/keyword-spacing](./keyword-spacing.md) | Enforce consistent spacing before and after keywords in `<template>` | :wrench: | :lipstick: |
310310
| [vue/max-len](./max-len.md) | enforce a maximum line length in `.vue` files | | :lipstick: |
311311
| [vue/multiline-ternary](./multiline-ternary.md) | Enforce newlines between operands of ternary expressions in `<template>` | :wrench: | :lipstick: |
312-
| [vue/no-console](./no-console.md) | Disallow the use of `console` in `<template>` | | :hammer: |
312+
| [vue/no-console](./no-console.md) | Disallow the use of `console` in `<template>` | :bulb: | :hammer: |
313313
| [vue/no-constant-condition](./no-constant-condition.md) | Disallow constant expressions in conditions in `<template>` | | :warning: |
314314
| [vue/no-empty-pattern](./no-empty-pattern.md) | Disallow empty destructuring patterns in `<template>` | | :warning: |
315315
| [vue/no-extra-parens](./no-extra-parens.md) | Disallow unnecessary parentheses in `<template>` | :wrench: | :lipstick: |

Diff for: docs/rules/no-console.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ since: v9.15.0
99

1010
> Disallow the use of `console` in `<template>`
1111
12+
- :bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
13+
1214
## :book: Rule Details
1315

1416
This rule is the same rule as core [no-console] rule but it applies to the expressions in `<template>`.

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

0 commit comments

Comments
 (0)