class RuboCop::Cop::Style::EmptyLiteral

def frozen_strings?

def frozen_strings?
  return true if frozen_string_literals_enabled?
  frozen_string_cop_enabled = config.for_cop('Style/FrozenStringLiteral')['Enabled']
  frozen_string_cop_enabled && !frozen_string_literals_disabled?
end