Skip to content

Commit

Permalink
chore(eslint-plugin): fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Jun 17, 2024
1 parent 408afbe commit 2cc31cd
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@ x || y;
{
code: `
enum Enum {
A = "a",
B = "b",
C = "c",
A = 'a',
B = 'b',
C = 'c',
}
declare const x: Enum | undefined;
x || y;
Expand All @@ -350,9 +350,9 @@ x || y;
{
code: `
enum Enum {
A = "a",
B = "b",
C = "c",
A = 'a',
B = 'b',
C = 'c',
}
declare const x: Enum.A | Enum.B | undefined;
x || y;
Expand Down Expand Up @@ -1393,9 +1393,9 @@ x || y;
{
code: `
enum Enum {
A = "a",
B = "b",
C = "c",
A = 'a',
B = 'b',
C = 'c',
}
declare const x: Enum | undefined;
x || y;
Expand All @@ -1410,9 +1410,9 @@ x || y;
{
code: `
enum Enum {
A = "a",
B = "b",
C = "c",
A = 'a',
B = 'b',
C = 'c',
}
declare const x: Enum.A | Enum.B | undefined;
x || y;
Expand Down

0 comments on commit 2cc31cd

Please sign in to comment.