Revert "Enable .rubocop.yml in taps"

This commit is contained in:
Bryce Glover 2022-03-28 20:11:04 -04:00 committed by GitHub
parent 75db06d8f2
commit 1763beb8f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,15 +126,10 @@ module Homebrew
end end
files&.map!(&:expand_path) files&.map!(&:expand_path)
config, = files.flat_map do |f|
tap = f.to_s[%r{.+/homebrew-[^/]+}]
Pathname.glob("#{tap}/.rubocop.yml")
end
if files.blank? || files == [HOMEBREW_REPOSITORY] if files.blank? || files == [HOMEBREW_REPOSITORY]
files = [HOMEBREW_LIBRARY_PATH] files = [HOMEBREW_LIBRARY_PATH]
elsif files.none? { |f| f.to_s.start_with? HOMEBREW_LIBRARY_PATH } elsif files.none? { |f| f.to_s.start_with? HOMEBREW_LIBRARY_PATH }
config ||= if files.any? { |f| (f/"spec").exist? } config = if files.any? { |f| (f/"spec").exist? }
HOMEBREW_LIBRARY/".rubocop_rspec.yml" HOMEBREW_LIBRARY/".rubocop_rspec.yml"
else else
HOMEBREW_LIBRARY/".rubocop.yml" HOMEBREW_LIBRARY/".rubocop.yml"