Class: SCSSLint::Linter::FinalNewline
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::FinalNewline
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/final_newline.rb
Overview
Checks for final newlines at the end of a file.
Constant Summary
Constants included from Utils
Instance Attribute Summary
Attributes inherited from SCSSLint::Linter
Instance Method Summary collapse
Methods included from SCSSLint::LinterRegistry
extract_linters_from, included
Methods inherited from SCSSLint::Linter
Methods included from Utils
#color?, #color_hex?, #color_keyword?, #color_keyword_to_code, #extract_string_selectors, #node_ancestor, #node_siblings, #pluralize, #previous_node, #remove_quoted_strings, #same_position?
Methods included from SelectorVisitor
Constructor Details
This class inherits a constructor from SCSSLint::Linter
Instance Method Details
#visit_root(_node) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/scss_lint/linter/final_newline.rb', line 6 def visit_root(_node) return if engine.lines.empty? ends_with_newline = engine.lines[-1][-1] == "\n" if config['present'] add_lint(engine.lines.count, 'Files should end with a trailing newline') unless ends_with_newline else add_lint(engine.lines.count, 'Files should not end with a trailing newline') if ends_with_newline end end |