Class: SCSSLint::Linter::SingleLinePerSelector
- Inherits:
-
SCSSLint::Linter
- Object
- Sass::Tree::Visitors::Base
- SCSSLint::Linter
- SCSSLint::Linter::SingleLinePerSelector
- Includes:
- SCSSLint::LinterRegistry
- Defined in:
- lib/scss_lint/linter/single_line_per_selector.rb
Overview
Checks that selector sequences are split over multiple lines by comma.
Constant Summary collapse
- MESSAGE =
'Each selector in a comma sequence should be on its own line'
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_comma_sequence(node) ⇒ Object
8 9 10 11 12 13 14 15 16 |
# File 'lib/scss_lint/linter/single_line_per_selector.rb', line 8 def visit_comma_sequence(node) return unless node.members.count > 1 check_comma_on_own_line(node) node.members[1..-1].each_with_index do |sequence, index| check_sequence_commas(node, sequence, index) end end |