Class: SCSSLint::Linter::SpaceBeforeBrace

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

Overview

Checks for the presence of a single space before an opening brace.

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

#add_lint, #character_at, #initialize, #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

#visit_selector

Constructor Details

This class inherits a constructor from SCSSLint::Linter

Instance Method Details

#descriptionObject



14
15
16
# File 'lib/scss_lint/linter/space_before_brace.rb', line 14

def description
  'Opening curly braces ({) should be preceded by one space'
end

#visit_root(node) ⇒ Object



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

def visit_root(node)
  engine.lines.each_with_index do |line, index|
    line.scan /[^"#](?<![^ ] )\{/ do |match|
      @lints << Lint.new(engine.filename, index + 1, description)
    end
  end
end