Class: SCSSLint::Linter::DuplicateProperty

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

Overview

Checks for a property declared twice in a rule set.

Constant Summary

Constants included from Utils

Utils::COLOR_REGEX

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

inherited, #initialize, #name, #run

Methods included from Utils

#color?, #color_hex?, #color_keyword?, #color_keyword_to_code, #else_node?, #extract_string_selectors, #node_ancestor, #node_siblings, #pluralize, #previous_node, #remove_quoted_strings, #same_position?

Methods included from SelectorVisitor

#visit_selector

Constructor Details

This class inherits a constructor from SCSSLint::Linter

Instance Method Details

#check_properties(node) ⇒ Object Also known as: visit_rule, visit_mixindef, visit_media



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/scss_lint/linter/duplicate_property.rb', line 11

def check_properties(node)
  static_properties(node).each_with_object({}) do |prop, prop_names|
    prop_key = property_key(prop)

    if existing_prop = prop_names[prop_key]
      if existing_prop.line < prop.line - 1 || !ignore_consecutive_of?(prop)
        add_lint(prop, "Property `#{existing_prop.name.join}` already "\
                       "defined on line #{existing_prop.line}")
      else
        prop_names[prop_key] = prop
      end
    else
      prop_names[prop_key] = prop
    end
  end

  yield # Continue linting children
end

#visit_root(_node) ⇒ Object



6
7
8
9
# File 'lib/scss_lint/linter/duplicate_property.rb', line 6

def visit_root(_node)
  @ignore_consecutive = config['ignore_consecutive']
  yield
end