From 4d064e05f48da95042b0ea64446cb3ee320e58ba Mon Sep 17 00:00:00 2001 From: Jon Ursenbach Date: Fri, 3 Jan 2025 10:51:29 -0800 Subject: [PATCH] fix: bumping up the sicko threshold to 200 operations --- src/commands/openapi/inspect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/openapi/inspect.ts b/src/commands/openapi/inspect.ts index 26aae797f..933fc021f 100644 --- a/src/commands/openapi/inspect.ts +++ b/src/commands/openapi/inspect.ts @@ -124,7 +124,7 @@ function buildFullReport(analysis: Analysis, definitionVersion: string, tableBor } else if (info.found > 1) { let msg: string; msg = `You have a total of ${chalk.bold(info.found)} ${pluralize(info.name.toLowerCase(), info.found)} in your API.`; - if (info.found > 100) { + if (info.found > 200) { msg += ` ${chalk.cyanBright('Wow! 🤯')}`; }