From a09613543a3afe494ff6bca2b6721c991a938bdb Mon Sep 17 00:00:00 2001 From: Rylan Polster <rslpolster@gmail.com> Date: Fri, 27 Nov 2020 12:49:49 -0500 Subject: [PATCH] Migrate REGEX_CASE_SENSITIVE_ALLOWLIST --- Library/Homebrew/rubocops/livecheck.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Library/Homebrew/rubocops/livecheck.rb b/Library/Homebrew/rubocops/livecheck.rb index f7e3bc55c4..b857858e47 100644 --- a/Library/Homebrew/rubocops/livecheck.rb +++ b/Library/Homebrew/rubocops/livecheck.rb @@ -218,10 +218,8 @@ module RuboCop # # @api private class LivecheckRegexCaseInsensitive < FormulaCop - REGEX_CASE_SENSITIVE_ALLOWLIST = %w[].freeze - def audit_formula(_node, _class_node, _parent_class_node, body_node) - return if REGEX_CASE_SENSITIVE_ALLOWLIST.include?(@formula_name) + return if tap_style_exception? :regex_case_sensitive_allowlist livecheck_node = find_block(body_node, :livecheck) return if livecheck_node.blank? -- GitLab