Sha256: 447fafdb2d81227e05ff01dc26204abe5ca71706264d0f208975910485724dca
Contents?: true
Size: 590 Bytes
Versions: 28
Compression:
Stored size: 590 Bytes
Contents
# frozen_string_literal: true module Overcommit::Hook::PreCommit # Runs `slim-lint` against any modified Slim templates. # # @see https://github.com/sds/slim-lint class SlimLint < Base MESSAGE_TYPE_CATEGORIZER = lambda do |type| type.include?('W') ? :warning : :error end def run result = execute(command, args: applicable_files) return :pass if result.success? extract_messages( result.stdout.split("\n"), /^(?<file>(?:\w:)?[^:]+):(?<line>\d+)[^ ]* (?<type>[^ ]+)/, MESSAGE_TYPE_CATEGORIZER, ) end end end
Version data entries
28 entries across 28 versions & 2 rubygems