Sha256: c2189cd24ad09928a8001199819790783fe7f2f8f750385b53884d557af3e85a
Contents?: true
Size: 808 Bytes
Versions: 1
Compression:
Stored size: 808 Bytes
Contents
module SCSSLint # Reports lints in an XML format. class Reporter::XMLReporter < Reporter def report_lints output = '<?xml version="1.0" encoding="utf-8"?>' output << '<lint>' lints.group_by(&:filename).each do |filename, file_lints| output << "<file name=#{filename.encode(xml: :attr)}>" file_lints.each do |lint| output << "<issue line=\"#{lint.location.line}\" " << "column=\"#{lint.location.column}\" " << "length=\"#{lint.location.length}\" " << "severity=\"#{lint.severity}\" " << "reason=#{lint.description.encode(xml: :attr)} />" end output << '</file>' end output << '</lint>' output end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
scss-lint-0.23.1 | lib/scss_lint/reporter/xml_reporter.rb |