From d832a24aba6adcfc83ffe81a8d36f73e713bad3b Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Sat, 26 Oct 2024 15:33:24 +0200 Subject: [PATCH] chore: ignore unresolved @octokit/openapi-types module --- .eslintrc.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 97c0c7a..680a44e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -20,5 +20,15 @@ "@typescript-eslint", "jest", "prettier" - ] + ], + "rules": { + "import/no-unresolved": [ + "error", + { + "ignore": [ + "@octokit/openapi-types" + ] + } + ] + } }