From 6f0fbceaf213f523bc68d23ea28fd457499f3a75 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Fri, 27 Sep 2024 16:14:17 +0200 Subject: fix(lint): correctly handle old jsx in linter (#25902) Previously the CLI was incorrectly reporting `React` as unused in a JSX file that uses the "old" transform. The LSP was already handling this correctly. --- tests/specs/lint/jsx/react/mod.tsx | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/specs/lint/jsx/react/mod.tsx (limited to 'tests/specs/lint/jsx/react/mod.tsx') diff --git a/tests/specs/lint/jsx/react/mod.tsx b/tests/specs/lint/jsx/react/mod.tsx new file mode 100644 index 000000000..be1e843c1 --- /dev/null +++ b/tests/specs/lint/jsx/react/mod.tsx @@ -0,0 +1,3 @@ +const React = { createElement() {} }; + +const _div =
; -- cgit v1.2.3