You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Further to #172, jsx-no-undef does not catch lowercase object access.
This warns as expected:
<Foo.Bar />
This does not:
<foo.Bar />
Presumably it's being excluded by the code which ignores builtin tags such as <div>, etc. Object access should always be treated as a variable reference, regardless of case.
Thanks very much.
The text was updated successfully, but these errors were encountered:
Further to #172, jsx-no-undef does not catch lowercase object access.
This warns as expected:
This does not:
Presumably it's being excluded by the code which ignores builtin tags such as
<div>
, etc. Object access should always be treated as a variable reference, regardless of case.Thanks very much.
The text was updated successfully, but these errors were encountered: