Class: Git::Lint::Analyzers::CommitBodyPhrase

Inherits:
Abstract
  • Object
show all
Defined in:
lib/git/lint/analyzers/commit_body_phrase.rb

Overview

Analyzes use of commit body phrases that are not informative.

Constant Summary

Constants inherited from Abstract

Abstract::BODY_OFFSET, Abstract::LEVELS

Instance Attribute Summary

Attributes inherited from Abstract

#commit

Instance Method Summary collapse

Methods inherited from Abstract

build_issue_line, #error?, id, #initialize, #invalid?, label, #severity, #warning?

Constructor Details

This class inherits a constructor from Git::Lint::Analyzers::Abstract

Instance Method Details

#issueObject



10
11
12
13
14
15
16
17
# File 'lib/git/lint/analyzers/commit_body_phrase.rb', line 10

def issue
  return {} if valid?

  {
    hint: %(Avoid: #{filter_list.to_usage}.),
    lines: affected_commit_body_lines
  }
end

#valid?Boolean

Returns:

  • (Boolean)


8
# File 'lib/git/lint/analyzers/commit_body_phrase.rb', line 8

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