From 54b4f0c743b662d9f1a5afa8680ffff4756da612 Mon Sep 17 00:00:00 2001 From: commitay Date: Fri, 1 Jun 2018 08:30:03 +1000 Subject: [PATCH] audit: github notability --- Library/Homebrew/dev-cmd/audit.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 8aeeae26b3..bcfbf1f7c4 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -515,9 +515,9 @@ module Homebrew new_formula_problem "GitHub fork (not canonical repository)" if metadata["fork"] if formula&.tap&.core_tap? && - (metadata["forks_count"] < 20) && (metadata["subscribers_count"] < 20) && - (metadata["stargazers_count"] < 50) - new_formula_problem "GitHub repository not notable enough (<20 forks, <20 watchers and <50 stars)" + (metadata["forks_count"] < 30) && (metadata["subscribers_count"] < 30) && + (metadata["stargazers_count"] < 75) + new_formula_problem "GitHub repository not notable enough (<30 forks, <30 watchers and <75 stars)" end return if Date.parse(metadata["created_at"]) <= (Date.today - 30)