module RuboCop::Cop::AllowedIdentifiers
def allowed_identifier?(name)
def allowed_identifier?(name) !allowed_identifiers.empty? && allowed_identifiers.include?(name.to_s.delete(SIGILS)) end
def allowed_identifiers
def allowed_identifiers cop_config.fetch('AllowedIdentifiers') { [] } end