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 << "" end output << '' end output << '' output end end end