From 7bc3f8a082cb969903150131850dc03e65efed02 Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Tue, 7 May 2024 08:14:17 +0100 Subject: [PATCH] Remove unused eslint rule --- .../file/checkFileNameIncludes/1.0.0/index.ts | 2 -- .../file/checkFileNameIncludes/2.0.0/index.ts | 6 ------ 2 files changed, 8 deletions(-) diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/1.0.0/index.ts index f54ac41..6d512b6 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/1.0.0/index.ts @@ -23,12 +23,10 @@ const details = (): IpluginDetails => ({ label: 'Terms', name: 'terms', type: 'string', - // eslint-disable-next-line no-template-curly-in-string defaultValue: '_720p,_1080p', inputUI: { type: 'text', }, - // eslint-disable-next-line no-template-curly-in-string tooltip: 'Specify terms to check for in file name using comma seperated list e.g. _720p,_1080p', }, ], diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/2.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/2.0.0/index.ts index 3cbda14..cea52e6 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/2.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/checkFileNameIncludes/2.0.0/index.ts @@ -23,36 +23,30 @@ const details = (): IpluginDetails => ({ label: 'Terms', name: 'terms', type: 'string', - // eslint-disable-next-line no-template-curly-in-string defaultValue: '_720p,_1080p', inputUI: { type: 'text', }, - // eslint-disable-next-line no-template-curly-in-string tooltip: 'Specify terms to check for in file name using comma seperated list e.g. _720p,_1080p', }, { label: 'Pattern (regular expression)', name: 'pattern', type: 'string', - // eslint-disable-next-line no-template-curly-in-string defaultValue: '', inputUI: { type: 'text', }, - // eslint-disable-next-line no-template-curly-in-string tooltip: 'Specify the pattern (regex) to check for in file name e.g. ^Pattern.*mkv$', }, { label: 'Include file directory in check', name: 'includeFileDirectory', type: 'boolean', - // eslint-disable-next-line no-template-curly-in-string defaultValue: 'false', inputUI: { type: 'switch', }, - // eslint-disable-next-line no-template-curly-in-string tooltip: 'Should the terms and patterns be evaluated against the file directory e.g. false, true', }, ],