Class: SCSSLint::Linter::Shorthand

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

Overview

Checks for the use of the shortest form for properties that can be written in shorthand.

Instance Attribute Summary

Attributes inherited from SCSSLint::Linter

#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, node_name, #run, #visit, #visit_children

Methods included from Utils

#can_be_condensed?, #extract_string_selectors, #node_has_bad_name?, #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



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/scss_lint/linter/shorthand.rb', line 7

def visit_prop(node)
  property_name = node.name.join
  return unless SHORTHANDABLE_PROPERTIES.include?(property_name)

  case node.value
  when Sass::Script::Tree::Literal
    # HACK: node_parent may not be initialized at this point, so we need to
    # set it ourselves
    node.value.value.node_parent = node.value
    check_script_string(property_name, node.value.value)
  when Sass::Script::Tree::ListLiteral
    check_script_list(property_name, node.value)
  end
end