aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/audit.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index f2dc78299..342666f8e 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -512,9 +512,9 @@ class FormulaAuditor
end
problem "GitHub fork (not canonical repository)" if metadata["fork"]
- if (metadata["forks_count"] < 10) && (metadata["subscribers_count"] < 10) &&
- (metadata["stargazers_count"] < 20)
- problem "GitHub repository not notable enough (<10 forks, <10 watchers and <20 stars)"
+ if (metadata["forks_count"] < 20) && (metadata["subscribers_count"] < 20) &&
+ (metadata["stargazers_count"] < 50)
+ problem "GitHub repository not notable enough (<20 forks, <20 watchers and <50 stars)"
end
if Date.parse(metadata["created_at"]) > (Date.today - 30)