Sha256: 7c41aef20fdf4c8f25e67a527c81d8b6fcd32d21206f37703c1ee06762ed68a3

Contents?: true

Size: 802 Bytes

Versions: 5

Compression:

Stored size: 802 Bytes

Contents

# frozen_string_literal: true

module Git
  module Lint
    module Analyzers
      class CommitBodyBulletDelimiter < Abstract
        def self.defaults
          {
            enabled: true,
            severity: :error,
            includes: %w[\\-]
          }
        end

        def valid? = commit.body_lines.none? { |line| invalid_line? line }

        def issue
          return {} if valid?

          {
            hint: "Use space after bullet.",
            lines: affected_commit_body_lines
          }
        end

        protected

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

        def invalid_line?(line) = line.match?(/\A\s*#{pattern}(?!(#{pattern}|\s)).+\Z/)

        def pattern = Regexp.union(filter_list.to_regexp)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
git-lint-2.4.0 lib/git/lint/analyzers/commit_body_bullet_delimiter.rb
git-lint-2.3.3 lib/git/lint/analyzers/commit_body_bullet_delimiter.rb
git-lint-2.3.2 lib/git/lint/analyzers/commit_body_bullet_delimiter.rb
git-lint-2.3.1 lib/git/lint/analyzers/commit_body_bullet_delimiter.rb
git-lint-2.3.0 lib/git/lint/analyzers/commit_body_bullet_delimiter.rb