module SCSSLint
# Reports lints in an XML format.
class Reporter::XMLReporter < Reporter
def report_lints
output = ''
output << ''
lints.group_by(&:filename).each do |filename, file_lints|
output << ""
file_lints.each do |lint|
output << issue_tag(lint)
end
output << ''
end
output << ''
output
end
private
def issue_tag(lint)
""
end
end
end