Documentation
Rules
dom/no-unsafe-target-blank

no-unsafe-target-blank

Rule category

Security.

What it does

Prevents the use of target="_blank" without rel="noreferrer noopener".

Examples

Failing

import React from "react";
 
function Example() {
  return (
    <a href="https://example.com" target="_blank">
      Example
    </a>
  );
}

Passing

import React from "react";
 
function Example() {
  return (
    <a href="https://example.com" target="_blank" rel="noreferrer noopener">
      Example
    </a>
  );
}