Sha256: 00ea0b39d3f434bf60164b5de7af732b5303c8399e2f44bdf063d02ae3e0b0f7

Contents?: true

Size: 1003 Bytes

Versions: 8

Compression:

Stored size: 1003 Bytes

Contents

# frozen_string_literal: true

module Git
  module Lint
    module Analyzers
      # Analyzes commit trailer collaborator key usage.
      class CommitTrailerCollaboratorKey < Abstract
        def initialize commit, parser: Parsers::Trailers::Collaborator, **dependencies
          super commit, **dependencies
          @parser = parser
        end

        def valid? = affected_commit_trailers.empty?

        def issue
          return {} if valid?

          {
            hint: "Use format: #{filter_list.to_hint}.",
            lines: affected_commit_trailers
          }
        end

        protected

        def load_filter_list = Kit::FilterList.new(settings.includes)

        def invalid_line? line
          collaborator = parser.new line
          key = collaborator.key

          collaborator.match? && !key.empty? && !key.match?(
            /\A#{Regexp.union filter_list.to_regexp}\Z/
          )
        end

        private

        attr_reader :parser
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
git-lint-4.6.0 lib/git/lint/analyzers/commit_trailer_collaborator_key.rb
git-lint-4.5.0 lib/git/lint/analyzers/commit_trailer_collaborator_key.rb
git-lint-4.4.0 lib/git/lint/analyzers/commit_trailer_collaborator_key.rb
git-lint-4.3.0 lib/git/lint/analyzers/commit_trailer_collaborator_key.rb
git-lint-4.2.0 lib/git/lint/analyzers/commit_trailer_collaborator_key.rb
git-lint-4.1.0 lib/git/lint/analyzers/commit_trailer_collaborator_key.rb
git-lint-4.0.1 lib/git/lint/analyzers/commit_trailer_collaborator_key.rb
git-lint-4.0.0 lib/git/lint/analyzers/commit_trailer_collaborator_key.rb