Skip to content

Commit 74739c8

Browse files
authored
fix: suggestion with invalid syntax in no-promise-executor-return rule (#17812)
1 parent e0cb960 commit 74739c8

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

lib/rules/no-promise-executor-return.js

+9-6
Original file line numberDiff line numberDiff line change
@@ -209,12 +209,15 @@ module.exports = {
209209
});
210210
}
211211

212-
suggest.push({
213-
messageId: "wrapBraces",
214-
fix(fixer) {
215-
return curlyWrapFixer(sourceCode, node, fixer);
216-
}
217-
});
212+
// Do not suggest wrapping an unnamed FunctionExpression in braces as that would be invalid syntax.
213+
if (!(node.body.type === "FunctionExpression" && !node.body.id)) {
214+
suggest.push({
215+
messageId: "wrapBraces",
216+
fix(fixer) {
217+
return curlyWrapFixer(sourceCode, node, fixer);
218+
}
219+
});
220+
}
218221

219222
context.report({
220223
node: node.body,

tests/lib/rules/no-promise-executor-return.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -891,17 +891,14 @@ ruleTester.run("no-promise-executor-return", rule, {
891891
}]
892892
},
893893
{
894+
895+
// No suggestion since an unnamed FunctionExpression inside braces is invalid syntax.
894896
code: "() => new Promise(() => function () {});",
895897
errors: [{
896898
messageId: "returnsValue",
897899
type: "FunctionExpression",
898900
column: 25,
899-
suggestions: [
900-
{
901-
messageId: "wrapBraces",
902-
output: "() => new Promise(() => {function () {}});"
903-
}
904-
]
901+
suggestions: []
905902
}]
906903
},
907904
{

0 commit comments

Comments
 (0)