Class: SCSSLint::Linter::SpaceAfterPropertyName
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::SpaceAfterPropertyName
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/space_after_property_name.rb
Overview
Checks for spaces following the name of a property and before the colon separating the property’s name from its value.
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_prop(node) ⇒ Object
7 8 9 10 11 |
# File 'lib/scss_lint/linter/space_after_property_name.rb', line 7 def visit_prop(node) offset = property_name_colon_offset(node) return unless character_at(node.name_source_range.start_pos, offset - 1) == ' ' add_lint node, 'Property name should be immediately followed by a colon' end |