From 9d5c375d4f796c650d45755bf3602a6d35f7b706 Mon Sep 17 00:00:00 2001 From: Jason Green Date: Mon, 8 Jul 2024 22:20:34 +0100 Subject: [PATCH] fix: ignore @typescript-eslint/array-type for json-schema.ts --- lib/types/json-schema.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/types/json-schema.ts b/lib/types/json-schema.ts index 281a38bdb..3ac61f9a9 100644 --- a/lib/types/json-schema.ts +++ b/lib/types/json-schema.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/array-type */ /* eslint-disable @typescript-eslint/no-empty-interface */ type StrictNullChecksWrapper = undefined extends null ? `strictNullChecks must be true in tsconfig to use ${Name}`