Class: SCSSLint::Linter::VendorPrefix

Inherits:
SCSSLint::Linter
  • Object
show all
Includes:
SCSSLint::LinterRegistry
Defined in:
lib/scss_lint/linter/vendor_prefix.rb

Overview

Checks for vendor prefixes.

Constant Summary

Constants included from Utils

Utils::COLOR_REGEX

Instance Attribute Summary

Attributes inherited from SCSSLint::Linter

#config, #engine, #lints

Instance Method Summary collapse

Methods included from SCSSLint::LinterRegistry

extract_linters_from, included

Methods inherited from SCSSLint::Linter

#initialize, #name, #run

Methods included from Utils

#color?, #color_hex?, #color_keyword?, #color_keyword_to_code, #extract_string_selectors, #node_siblings, #pluralize, #previous_node, #remove_quoted_strings, #same_position?

Methods included from SelectorVisitor

#visit_selector

Constructor Details

This class inherits a constructor from SCSSLint::Linter

Instance Method Details

#check_node(node) ⇒ Object Also known as: visit_prop, visit_pseudo, visit_directive



13
14
15
16
17
18
19
20
21
# File 'lib/scss_lint/linter/vendor_prefix.rb', line 13

def check_node(node)
  name = node.name.is_a?(Array) ? node.name.join : node.name
  # Ignore '@' from @keyframes node name
  check_identifier(node, name.gsub(/^@/, ''))

  # Check for values
  return unless node.respond_to?(:value) && node.value.respond_to?(:source_range)
  check_identifier(node, source_from_range(node.value.source_range))
end

#visit_root(_node) ⇒ Object



6
7
8
9
10
11
# File 'lib/scss_lint/linter/vendor_prefix.rb', line 6

def visit_root(_node)
  @identifiers = Set.new(extract_identifiers_from_config)
  @identifiers.merge(Set.new(config['additional_identifiers']))
  @exclusions = Set.new(config['excluded_identifiers'])
  yield
end