class SlimLint::Reporter::EmacsReporter

Outputs lints in format: {filename}:{line}:{column}: {kind}: {message}.

Public Instance Methods

display_report(report) click to toggle source
# File lib/slim_lint/reporter/emacs_reporter.rb, line 6
def display_report(report)
  sorted_lints = report.lints.sort_by { |l| [l.filename, l.line] }

  sorted_lints.each do |lint|
    print_location(lint)
    print_type(lint)
    print_message(lint)
  end
end

Private Instance Methods

print_location(lint) click to toggle source
print_message(lint) click to toggle source
print_type(lint) click to toggle source