Skip to content

Commit 23c199d

Browse files
committed
fix: disable eqeqeq
1 parent 486f040 commit 23c199d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/core/convert.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,10 @@ function transformJsx(code: string, node: JSX) {
295295

296296
// Comparison operators
297297
case '==':
298+
// eslint-disable-next-line eqeqeq
298299
return left == right
299300
case '!=':
301+
// eslint-disable-next-line eqeqeq
300302
return left != right
301303
case '===':
302304
return left === right

0 commit comments

Comments
 (0)