module RuboCop::Cop::ConfigurableEnforcedStyle

def alternative_style

def alternative_style
  if supported_styles.size != 2
    raise 'alternative_style can only be used when there are exactly ' \
         '2 SupportedStyles'
  end
  (supported_styles - [style]).first
end