Class: SCSSLint::Linter::VariableForProperty
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::VariableForProperty
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/variable_for_property.rb
Overview
Reports the use of literals for properties where variables are prefered.
Constant Summary collapse
- IGNORED_VALUES =
%w[currentColor inherit transparent]
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
13 14 15 16 17 18 19 20 21 |
# File 'lib/scss_lint/linter/variable_for_property.rb', line 13 def visit_prop(node) property_name = node.name.join return unless @properties.include?(property_name) return if ignored_value?(node.value) return if node.children.first.is_a?(Sass::Script::Tree::Variable) add_lint(node, "Property #{property_name} should use " \ 'a variable rather than a literal value') end |
#visit_root(_node) ⇒ Object
8 9 10 11 |
# File 'lib/scss_lint/linter/variable_for_property.rb', line 8 def visit_root(_node) @properties = Set.new(config['properties']) yield if @properties.any? end |