require_relative 'line_parser' module LintTrap module Parsers # Handles parsing LintCI standard format class VimQuickfixParser < LineParser private def violation_regex / (?[^:]+): (?[^:]*): (?[^:]*):\s* (?.+) /x end end end end