Class: SCSSLint::Linter::SpaceBeforeBrace
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::SpaceBeforeBrace
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/space_before_brace.rb
Overview
Checks for the presence of a single space before an opening brace.
Constant Summary
Constants included from Utils
Instance Attribute Summary
Attributes inherited from SCSSLint::Linter
Instance Method Summary collapse
- #check_node(node) ⇒ Object (also: #visit_function, #visit_each, #visit_for, #visit_mixindef, #visit_mixin, #visit_rule, #visit_while)
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
#check_node(node) ⇒ Object Also known as: visit_function, visit_each, visit_for, visit_mixindef, visit_mixin, visit_rule, visit_while
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/scss_lint/linter/space_before_brace.rb', line 6 def check_node(node) source = source_from_range(node.source_range).strip # Only lint `@include`s which have curly braces if source[-1] == '{' check_for_space(node, source) end yield end |