Class: SCSSLint::Linter::UrlFormat
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::UrlFormat
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/url_format.rb
Overview
Checks the format of URLs for unnecessary protocols or domains.
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
19 20 21 22 23 24 25 26 |
# File 'lib/scss_lint/linter/url_format.rb', line 19 def visit_prop(node) if url_literal?(node.value) url = node.value.to_sass.gsub(/^url\((.*)\)$/, '\\1') check_url(url, node) end yield end |
#visit_script_funcall(node) ⇒ Object
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/scss_lint/linter/url_format.rb', line 8 def visit_script_funcall(node) return unless node.name == 'url' if url_string?(node.args[0]) url = node.args[0].value.value.to_s check_url(url, node) end yield end |