Skip to content

Commit

Permalink
9.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Mar 23, 2023
1 parent 2e94cdb commit df31785
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/rules/index.md
Expand Up @@ -241,7 +241,7 @@ For example:
| [vue/no-restricted-static-attribute](./no-restricted-static-attribute.md) | disallow specific attribute | | :hammer: |
| [vue/no-restricted-v-bind](./no-restricted-v-bind.md) | disallow specific argument in `v-bind` | | :hammer: |
| [vue/no-static-inline-styles](./no-static-inline-styles.md) | disallow static inline `style` attributes | | :hammer: |
| [vue/no-template-target-blank](./no-template-target-blank.md) | disallow target="_blank" attribute without rel="noopener noreferrer" | | :warning: |
| [vue/no-template-target-blank](./no-template-target-blank.md) | disallow target="_blank" attribute without rel="noopener noreferrer" | :bulb: | :warning: |
| [vue/no-this-in-before-route-enter](./no-this-in-before-route-enter.md) | disallow `this` usage in a `beforeRouteEnter` method | | :warning: |
| [vue/no-undef-components](./no-undef-components.md) | disallow use of undefined components in `<template>` | | :hammer: |
| [vue/no-undef-properties](./no-undef-properties.md) | disallow undefined properties | | :hammer: |
Expand Down
2 changes: 2 additions & 0 deletions docs/rules/no-template-target-blank.md
Expand Up @@ -9,6 +9,8 @@ since: v7.0.0

> disallow target="_blank" attribute without rel="noopener noreferrer"
- :bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).

## :book: Rule Details

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/)).
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-vue",
"version": "9.9.0",
"version": "9.10.0",
"description": "Official ESLint plugin for Vue.js",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit df31785

Please sign in to comment.