Class: SCSSLint::Linter::UrlQuotes
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::UrlQuotes
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/url_quotes.rb
Overview
Checks for quotes in URLs.
Constant Summary
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
6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/scss_lint/linter/url_quotes.rb', line 6 def visit_prop(node) case node.value when Sass::Script::Tree::Literal check(node, node.value.value.to_s) when Sass::Script::Tree::ListLiteral node.value.children.select { |child| child.is_a?(Sass::Script::Tree::Literal) } .each { |child| check(node, child.value.to_s) } end yield end |