Skip to content

Commit

Permalink
fix: bumping up the sicko threshold to 200 operations
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed Jan 3, 2025
1 parent 466647f commit 4d064e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/openapi/inspect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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! 🤯')}`;
}

Expand Down

0 comments on commit 4d064e0

Please sign in to comment.