# File lib/kwala/actions/code_formatting.rb, line 219
  def check_lines(file, lines)
    if lines.size > MAX_LINE_COUNT
      @violation_rec.violation(file, "", "",
                               "File line count > #{MAX_LINE_COUNT}",
                                "Warning")
    end
  end