Class: SCSSLint::Linter::SpaceAfterPropertyColon

Inherits:
SCSSLint::Linter
  • Object
show all
Includes:
SCSSLint::LinterRegistry
Defined in:
lib/scss_lint/linter/space_after_property_colon.rb

Overview

Checks for spaces following the colon that separates a property’s name from its value.

Constant Summary collapse

EXPECTED_SPACES_AFTER_COLON =
1

Instance Attribute Summary

Attributes inherited from SCSSLint::Linter

#config, #engine, #lints

Instance Method Summary collapse

Methods included from SCSSLint::LinterRegistry

extract_linters_from, included

Methods inherited from SCSSLint::Linter

#add_lint, #character_at, #description, #initialize, #run, #source_from_range, #visit, #visit_children

Methods included from Utils

#can_be_condensed?, #extract_string_selectors, #pluralize, #previous_node, #remove_quoted_strings, #shortest_hex_form

Methods included from SelectorVisitor

#visit_selector

Constructor Details

This class inherits a constructor from SCSSLint::Linter

Instance Method Details

#visit_prop(node) ⇒ Object



9
10
11
12
13
14
15
16
17
# File 'lib/scss_lint/linter/space_after_property_colon.rb', line 9

def visit_prop(node)
  spaces = spaces_after_colon(node)

  if spaces != EXPECTED_SPACES_AFTER_COLON
    add_lint node, 'Colon after property should be followed by ' <<
                   "#{pluralize(EXPECTED_SPACES_AFTER_COLON, 'space')} instead of " <<
                   pluralize(spaces, 'space')
  end
end