Class: SCSSLint::Linter::SpaceAroundOperator

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

Overview

Checks for space around operators on values.

Defined Under Namespace

Classes: OperationSources

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

inherited, #initialize, #name, #run

Methods included from Utils

#color?, #color_hex?, #color_keyword?, #color_keyword_to_code, #else_node?, #extract_string_selectors, #node_ancestor, #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

#source_fm_range(range) ⇒ Object

Making a public version of #source_from_range, a private method.



27
28
29
# File 'lib/scss_lint/linter/space_around_operator.rb', line 27

def source_fm_range(range)
  source_from_range(range)
end

#visit_script_operation(node) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/scss_lint/linter/space_around_operator.rb', line 8

def visit_script_operation(node)
  operation_sources = OperationSources.new(node, self)
  operation_sources.adjust_sources

  # When an operation is found interpolated within something not a String
  # (only selectors?), the source ranges are offset by two (probably not
  # accounting for the `#{`. Slide everything to the left by 2, and maybe
  # things will look sane this time.
  unless operation_sources.operator_source.match?(Sass::Script::Lexer::REGULAR_EXPRESSIONS[:op])
    operation_sources.adjust_for_interpolation
    operation_sources.adjust_sources
  end

  check(node, operation_sources)

  yield
end