class RuboCop::Formatter::HTMLFormatter

def render_html

def render_html
  context = ERBContext.new(files, summary)
  template = File.read(TEMPLATE_PATH, encoding: Encoding::UTF_8)
  erb = ERB.new(template, nil, '-')
  html = erb.result(context.binding)
  output.write html
end