Class: HamlLint::Linter::TrailingEmptyLines
- Inherits:
-
HamlLint::Linter
- Object
- HamlLint::Linter
- HamlLint::Linter::TrailingEmptyLines
- Includes:
- HamlLint::LinterRegistry
- Defined in:
- lib/haml_lint/linter/trailing_empty_lines.rb
Overview
Checks for trailing empty lines.
Defined Under Namespace
Classes: DummyNode
Instance Attribute Summary
Attributes inherited from HamlLint::Linter
Instance Method Summary collapse
Methods included from HamlLint::LinterRegistry
extract_linters_from, included
Methods inherited from HamlLint::Linter
#initialize, #name, #run, #run_or_raise, supports_autocorrect?, #supports_autocorrect?
Methods included from HamlVisitor
Constructor Details
This class inherits a constructor from HamlLint::Linter
Instance Method Details
#visit_root(root) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/haml_lint/linter/trailing_empty_lines.rb', line 10 def visit_root(root) return if document.source.empty? line_number = document.last_non_empty_line node = root.node_for_line(line_number) return if node.disabled?(self) return unless document.source.end_with?("\n\n") record_lint(line_number, 'Files should not end with trailing empty lines') end |