Skip to content

Commit

Permalink
[Fix] display-name: fix false positive for HOF returning only nulls…
Browse files Browse the repository at this point in the history
… and literals
  • Loading branch information
golopot committed Jun 1, 2022
1 parent e7fc22f commit d4d4067
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 54 deletions.
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)
) {
return undefined;
}
Expand Down
11 changes: 11 additions & 0 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
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' }],
},
]),
});

0 comments on commit d4d4067

Please sign in to comment.