Class: Git::Lint::Analyzers::CommitSubjectWordRepeat
- Defined in:
- lib/git/lint/analyzers/commit_subject_word_repeat.rb
Overview
Analyzes commit subject for repeated words.
Constant Summary
Constants inherited from Abstract
Abstract::BODY_OFFSET, Abstract::LEVELS
Instance Attribute Summary
Attributes inherited from Abstract
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
#issue ⇒ Object
12 13 14 15 16 |
# File 'lib/git/lint/analyzers/commit_subject_word_repeat.rb', line 12 def issue return {} if valid? {hint: "Avoid repeating these words: #{validator.call commit.subject}."} end |
#valid? ⇒ Boolean
10 |
# File 'lib/git/lint/analyzers/commit_subject_word_repeat.rb', line 10 def valid? = validator.call(commit.subject).empty? |