Class: SCSSLint::Linter::PropertySortOrder
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::PropertySortOrder
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/property_sort_order.rb
Overview
Checks the declaration order of properties.
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
#extract_string_selectors, #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_rule(node) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/scss_lint/linter/property_sort_order.rb', line 6 def visit_rule(node) # Ignore properties that contain interpolation sortable_props = node.children.select do |child| child.is_a?(Sass::Tree::PropNode) && child.name.all? { |part| part.is_a?(String) } end sortable_prop_info = sortable_props .map { |child| child.name.join } .map do |name| /^(?<vendor>-\w+(-osx)?-)?(?<property>.+)/ =~ name { name: name, vendor: vendor, property: property } end sorted_props = sortable_prop_info .sort { |a, b| compare_properties(a, b) } sorted_props.each_with_index do |prop, index| next unless prop != sortable_prop_info[index] add_lint(sortable_props[index], MESSAGE) break end yield # Continue linting children end |