summaryrefslogtreecommitdiff
path: root/tests/specs/lint/jsx/react/mod.tsx
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2024-09-27 16:14:17 +0200
committerGitHub <noreply@github.com>2024-09-27 14:14:17 +0000
commit6f0fbceaf213f523bc68d23ea28fd457499f3a75 (patch)
tree5080be4cf51993198dc3ad54b20889f25a7b93d0 /tests/specs/lint/jsx/react/mod.tsx
parent3134abefa462ead8bb8e2e4aa8a5b57910f3d430 (diff)
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.
Diffstat (limited to 'tests/specs/lint/jsx/react/mod.tsx')
-rw-r--r--tests/specs/lint/jsx/react/mod.tsx3
1 files changed, 3 insertions, 0 deletions
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 = <div />;