From a4b946a83dad4cc80ec40aaee761335c8c790f26 Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Fri, 13 Oct 2023 14:15:16 +0200 Subject: [PATCH] Update features.ts --- packages/cspell-types/src/features.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cspell-types/src/features.ts b/packages/cspell-types/src/features.ts index b9d7f95ef05..5aa4ee0189d 100644 --- a/packages/cspell-types/src/features.ts +++ b/packages/cspell-types/src/features.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-empty-interface */ /** * These are experimental features and are subject to change or removal without notice. */ @@ -11,14 +12,13 @@ export interface FeaturesExperimental { /** * These are the current set of active features */ -// eslint-disable-next-line @typescript-eslint/no-empty-interface + export interface FeaturesActive {} /** * These are feature settings that have been deprecated or moved elsewhere they will have no * effect on the code but are here to prevent schema errors. The will get cleaned out on major versions. */ -// eslint-disable-next-line @typescript-eslint/no-empty-interface export interface FeaturesDeprecated {} /**