aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Homebrew/cmd/audit.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 1d7e76796..b15e8361e 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -558,12 +558,6 @@ class FormulaAuditor
problem "Use `system #{good_system}` instead of `system #{bad_system}` "
end
- if line =~ /^[^#"]*('[^']*')/
- bad_quotes = $1
- good_quotes = bad_quotes.gsub "'", "\""
- problem "use double-quotes for `#{good_quotes}` instead of `#{bad_quotes}`"
- end
-
if line =~ /(require ["']formula["'])/
problem "`#{$1}` is now unnecessary"
end