module RuboCop::Cop::ConfigurableEnforcedStyle

def supported_styles

def supported_styles
  @supported_styles ||= begin
    supported_styles = Util.to_supported_styles(style_parameter_name)
    cop_config[supported_styles].map(&:to_sym)
  end
end