Skip to content

Commit

Permalink
fix(lint): resolve missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
naorpeled committed Feb 9, 2023
1 parent 480a761 commit 4bfa56a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/test.ts
Expand Up @@ -13,10 +13,10 @@ warmer({}, {
});

// @ts-expect-error - params should be required
warmer()
warmer();

// @ts-expect-error - config should be an object
warmer({}, 'some-invalid-config')
warmer({}, 'some-invalid-config');

warmer({}, {
// @ts-expect-error - flag should be a string
Expand Down

0 comments on commit 4bfa56a

Please sign in to comment.