class Pronto::Formatter::CheckstyleFormatter

def to_checkstyle_severity(pronto_level)

def to_checkstyle_severity(pronto_level)
  case pronto_level
  when :error, :fatal then 'error'
  else pronto_level.to_s
  end
end