Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] display-name: fix false positive for HOF returning only nulls and literals #3305

Merged
merged 1 commit into from Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -20,6 +20,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
* [`require-default-props`]: avoid a crash when function has no props param ([#3350][] @noahnu)
* [`display-name`], component detection: fix HOF returning null as Components ([#3347][] @jxm-math)
* [`forbid-prop-types`]: Ignore objects that are not of type React.PropTypes ([#3326][] @TildaDares)
* [`display-name`], component detection: fix false positive for HOF returning only nulls and literals ([#3305][] @golopot)

### Changed
* [Refactor] [`jsx-indent-props`]: improved readability of the checkNodesIndent function ([#3315][] @caroline223)
Expand Down Expand Up @@ -49,6 +50,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
[#3315]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3315
[#3314]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3314
[#3311]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3311
[#3305]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3305
[#3262]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3262

## [7.30.1] - 2022.06.23
Expand Down
1 change: 0 additions & 1 deletion lib/util/Components.js
Expand Up @@ -503,7 +503,6 @@ function componentRule(rule, context) {
if (
(node.parent.type === 'ReturnStatement' || (node.parent.type === 'ArrowFunctionExpression' && node.parent.expression))
&& !utils.isReturningJSX(node)
&& !utils.isReturningOnlyNull(node)
ljharb marked this conversation as resolved.
Show resolved Hide resolved
) {
return undefined;
}
Expand Down
39 changes: 11 additions & 28 deletions tests/lib/rules/display-name.js
Expand Up @@ -556,6 +556,17 @@ ruleTester.run('display-name', rule, {
}
`,
},
{
// issue #3300
code: `
const f = (a) => () => {
if (a) {
return null;
}
return 1;
};
`,
},
{
code: `
class Test {
Expand Down Expand Up @@ -1169,33 +1180,5 @@ ruleTester.run('display-name', rule, {
},
],
},
{
code: `
Demo = () => () => null;
`,
errors: [{ messageId: 'noDisplayName' }],
},
{
code: `
demo = {
Property: () => () => null
}
`,
errors: [{ messageId: 'noDisplayName' }],
},
{
code: `
Demo = function() {return function() {return null;};};
`,
errors: [{ messageId: 'noDisplayName' }],
},
{
code: `
demo = {
Property: function() {return function() {return null;};}
}
`,
errors: [{ messageId: 'noDisplayName' }],
},
]),
});
53 changes: 0 additions & 53 deletions tests/lib/rules/no-this-in-sfc.js
Expand Up @@ -275,58 +275,5 @@ ruleTester.run('no-this-in-sfc', rule, {
{ messageId: 'noThisInSFC' },
],
},
{
code: `
class Foo {
bar() {
return () => {
this.something();
return null;
}
}
}
`,
errors: [{ messageId: 'noThisInSFC' }],
},
{
code: `
class Foo {
bar = () => () => {
this.something();
return null;
};
}
`,
features: ['class fields', 'no-ts-old'], // TODO: FIXME: remove `no-ts-old` and fix
errors: [{ messageId: 'noThisInSFC' }],
},
{
code: `
class Foo {
bar() {
function Bar(){
return () => {
this.something();
return null;
}
}
}
}
`,
errors: [{ messageId: 'noThisInSFC' }],
},
{
code: `
class Foo {
bar() {
() => () => {
this.something();
return null;
};
}
}
`,
errors: [{ messageId: 'noThisInSFC' }],
},
ljharb marked this conversation as resolved.
Show resolved Hide resolved
]),
});