Class: Git::Lint::Analyzers::CommitBodyLineLength
- Defined in:
- lib/git/lint/analyzers/commit_body_line_length.rb
Overview
Analyzes commit body line length to prevent unnecessary horizontal scrolling.
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
10 11 12 13 14 15 16 17 |
# File 'lib/git/lint/analyzers/commit_body_line_length.rb', line 10 def issue return {} if valid? { hint: "Use #{maximum} characters or less per line.", lines: affected_commit_body_lines } end |
#valid? ⇒ Boolean
8 |
# File 'lib/git/lint/analyzers/commit_body_line_length.rb', line 8 def valid? = commit.body_lines.all? { |line| !invalid_line? line } |