From 1fb91cda7ed4f5ba6d5ba3d0852c3ea01edbb541 Mon Sep 17 00:00:00 2001 From: Reinier Goltstein Date: Wed, 25 Oct 2023 17:30:20 +0200 Subject: [PATCH] refactor: disable eslint rule from typescript-eslint --- src/common/makeGraphqlIterator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/makeGraphqlIterator.ts b/src/common/makeGraphqlIterator.ts index cd9312599f4..179f1e88d13 100644 --- a/src/common/makeGraphqlIterator.ts +++ b/src/common/makeGraphqlIterator.ts @@ -1,5 +1,5 @@ /* eslint-disable no-await-in-loop */ -/* eslint-disable prefer-destructuring */ +/* eslint-disable @typescript-eslint/prefer-destructuring */ import { getOctokit } from '@actions/github'; import type { GraphQlQueryResponseData } from '@octokit/graphql';