From b71bd5ea3e5e2f19dd80b5f5b145504529676a9f Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Thu, 21 Sep 2023 08:42:22 +0100 Subject: [PATCH] Fix lint --- .../file/compareFileSizeRatio/1.0.0/index.js | 6 ++++-- .../file/compareFileSizeRatio/1.0.0/index.ts | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/FlowPlugins/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.js index 52951c1..ea8b567 100644 --- a/FlowPlugins/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.js +++ b/FlowPlugins/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.js @@ -22,7 +22,8 @@ var details = function () { return ({ inputUI: { type: 'text', }, - tooltip: 'Specify lower bound. Default value is 40% so new file size must be at least 40% of original file size.', + tooltip: 'Specify lower bound. ' + + 'Default value is 40% so new file size must be at least 40% of original file size.', }, { name: 'lessThan', @@ -31,7 +32,8 @@ var details = function () { return ({ inputUI: { type: 'text', }, - tooltip: 'Specify upper bound. Default value is 110% so new file size must be at most 110% of original file size.', + tooltip: 'Specify upper bound.' + + ' Default value is 110% so new file size must be at most 110% of original file size.', }, ], outputs: [ diff --git a/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.ts index 4c94a7a..dfcd714 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/file/compareFileSizeRatio/1.0.0/index.ts @@ -26,7 +26,8 @@ const details = (): IpluginDetails => ({ inputUI: { type: 'text', }, - tooltip: 'Specify lower bound. Default value is 40% so new file size must be at least 40% of original file size.', + tooltip: 'Specify lower bound. ' + + 'Default value is 40% so new file size must be at least 40% of original file size.', }, { name: 'lessThan', @@ -35,7 +36,8 @@ const details = (): IpluginDetails => ({ inputUI: { type: 'text', }, - tooltip: 'Specify upper bound. Default value is 110% so new file size must be at most 110% of original file size.', + tooltip: 'Specify upper bound.' + + ' Default value is 110% so new file size must be at most 110% of original file size.', }, ], outputs: [