mirror of
https://github.com/ente-io/ente.git
synced 2025-05-24 12:09:17 +00:00
https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/jsx-no-target-blank.md
18 lines
468 B
JavaScript
18 lines
468 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
extends: [
|
|
"./eslintrc-base.js",
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
],
|
|
plugins: ["react-refresh"],
|
|
settings: { react: { version: "18.2" } },
|
|
rules: {
|
|
"react/jsx-no-target-blank": ["warn", { allowReferrer: true }],
|
|
"react-refresh/only-export-components": [
|
|
"warn",
|
|
{ allowConstantExport: true },
|
|
],
|
|
},
|
|
};
|