aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-10-18 08:11:02 +0100
committerMike McQuaid2016-10-18 08:11:02 +0100
commit56ae868cf121eaece27dea73a3716f813069a7e3 (patch)
treecd6248beebf9981a65405946d772c56c789483f5 /Library
parent0296439c832a915be9b73456c0c26bc6c79c271d (diff)
downloadbrew-56ae868cf121eaece27dea73a3716f813069a7e3.tar.bz2
audit: don't complain about trailing whitespace.
This is handled by `brew style` now.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/dev-cmd/audit.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb
index c2a8fb450..9a15c6de7 100644
--- a/Library/Homebrew/dev-cmd/audit.rb
+++ b/Library/Homebrew/dev-cmd/audit.rb
@@ -736,7 +736,7 @@ class FormulaAuditor
problem "require \"language/go\" is unnecessary unless using `go_resource`s"
end
- def audit_line(line, lineno)
+ def audit_line(line, _lineno)
if line =~ /<(Formula|AmazonWebServicesFormula|ScriptFileFormula|GithubGistFormula)/
problem "Use a space in class inheritance: class Foo < #{$1}"
end
@@ -817,9 +817,6 @@ class FormulaAuditor
# Commented-out depends_on
problem "Commented-out dep #{$1}" if line =~ /#\s*depends_on\s+(.+)\s*$/
- # No trailing whitespace, please
- problem "#{lineno}: Trailing whitespace was found" if line =~ /[\t ]+$/
-
if line =~ /if\s+ARGV\.include\?\s+'--(HEAD|devel)'/
problem "Use \"if build.#{$1.downcase}?\" instead"
end