Class: SCSSLint::Linter::BangFormat
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::BangFormat
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/bang_format.rb
Overview
Checks spacing of ! declarations, like !important and !default
Constant Summary collapse
- STOPPING_CHARACTERS =
['!', "'", '"', nil]
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
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/scss_lint/linter/bang_format.rb', line 8 def visit_prop(node) return unless source_from_range(node.source_range).include?('!') return unless check_spacing(node) before_qualifier = config['space_before_bang'] ? '' : 'not ' after_qualifier = config['space_after_bang'] ? '' : 'not ' add_lint(node, "! should #{before_qualifier}be preceeded by a space, " \ "and should #{after_qualifier}be followed by a space") end |