Class: SCSSLint::Linter::Compass::PropertyWithMixin
- Inherits:
-
SCSSLint::Linter::Compass
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::Compass
- SCSSLint::Linter::Compass::PropertyWithMixin
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/compass/property_with_mixin.rb
Overview
Checks for uses of properties where a Compass mixin would be preferred.
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
#add_lint, #character_at, #initialize, #location_from_range, #node_on_single_line?, #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
Constructor Details
This class inherits a constructor from SCSSLint::Linter
Instance Method Details
#visit_prop(node) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/scss_lint/linter/compass/property_with_mixin.rb', line 6 def visit_prop(node) prop_name = node.name.join if PROPERTIES_WITH_MIXINS.include?(prop_name) add_lint node, "Use the Compass `#{prop_name}` mixin instead of the property" end if prop_name == 'display' && node.value.to_sass == 'inline-block' add_lint node, 'Use the Compass `inline-block` mixin instead of `display: inline-block`' end end |