Skip to content

Commit 83a26dd

Browse files
committed
[Fix] forbid-elements: prevent a crash on createElement()
See #3632 (comment)
1 parent e880213 commit 83a26dd

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
2727
* [`no-unknown-property`]: use a better regex to avoid a crash ([#3666][] @ljharb @SCH227)
2828
* [`prop-types`]: handle nested forwardRef + memo ([#3679][] @developer-bandi)
2929
* [`no-unknown-property`]: add `fetchPriority` ([#3697][] @SevereCloud)
30+
* [`forbid-elements`]: prevent a crash on `createElement()` ([#3632][] @ljharb)
3031

3132
### Changed
3233
* [Refactor] `propTypes`: extract type params to var ([#3634][] @HenryBrown0)
@@ -56,6 +57,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
5657
[#3638]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3638
5758
[#3634]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3634
5859
[#3633]: https://github.com/jsx-eslint/eslint-plugin-react/issues/3633
60+
[#3632]: https://github.com/jsx-eslint/eslint-plugin-react/issues/3632
5961
[#3630]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3630
6062
[#3626]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3626
6163
[#3623]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3623

lib/rules/forbid-elements.js

+4
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ module.exports = {
9999
}
100100

101101
const argument = node.arguments[0];
102+
if (!argument) {
103+
return;
104+
}
105+
102106
const argType = argument.type;
103107

104108
if (argType === 'Identifier' && /^[A-Z_]/.test(argument.name)) {

tests/lib/rules/forbid-elements.js

+3
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ ruleTester.run('forbid-elements', rule, {
8282
code: 'React.createElement(1)',
8383
options: [{ forbid: ['button'] }],
8484
},
85+
{
86+
code: 'React.createElement()',
87+
},
8588
]),
8689

8790
invalid: parsers.all([

0 commit comments

Comments
 (0)