aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-02-11 20:31:48 +0000
committerMike McQuaid2016-02-11 20:32:22 +0000
commitb06c6c74f9beb5eec1f1eecfd116fac5eae444f8 (patch)
treefe8a45de70498f5204686ffc5b50dde56af68e3d /Library
parent32850492f141cce9f078015bcfce2d244d8a861a (diff)
downloadbrew-b06c6c74f9beb5eec1f1eecfd116fac5eae444f8.tar.bz2
audit: roughly double notability requirements.
Closes Homebrew/homebrew#48706.
Diffstat (limited to 'Library')
-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)