Skip to content

Commit df31785

Browse files
committed
9.10.0
1 parent 2e94cdb commit df31785

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/rules/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ For example:
241241
| [vue/no-restricted-static-attribute](./no-restricted-static-attribute.md) | disallow specific attribute | | :hammer: |
242242
| [vue/no-restricted-v-bind](./no-restricted-v-bind.md) | disallow specific argument in `v-bind` | | :hammer: |
243243
| [vue/no-static-inline-styles](./no-static-inline-styles.md) | disallow static inline `style` attributes | | :hammer: |
244-
| [vue/no-template-target-blank](./no-template-target-blank.md) | disallow target="_blank" attribute without rel="noopener noreferrer" | | :warning: |
244+
| [vue/no-template-target-blank](./no-template-target-blank.md) | disallow target="_blank" attribute without rel="noopener noreferrer" | :bulb: | :warning: |
245245
| [vue/no-this-in-before-route-enter](./no-this-in-before-route-enter.md) | disallow `this` usage in a `beforeRouteEnter` method | | :warning: |
246246
| [vue/no-undef-components](./no-undef-components.md) | disallow use of undefined components in `<template>` | | :hammer: |
247247
| [vue/no-undef-properties](./no-undef-properties.md) | disallow undefined properties | | :hammer: |

docs/rules/no-template-target-blank.md

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

1010
> disallow target="_blank" attribute without rel="noopener noreferrer"
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 disallows using `target="_blank"` attribute without `rel="noopener noreferrer"` to avoid a security vulnerability([see here for more details](https://mathiasbynens.github.io/rel-noopener/)).

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

0 commit comments

Comments
 (0)