Sha256: 323e88c15cda4e370434e5f0b164cf9296d87b44e30e7908d71dab4e1b7ac976
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
module SCSSLint # Checks that selector sequences are split over multiple lines by comma. class Linter::SingleLinePerSelector < Linter include LinterRegistry def visit_rule(node) add_lint(node, MESSAGE) if invalid_comma_placement?(node) yield # Continue linting children end private MESSAGE = 'Each selector in a comma sequence should be on its own line' # A comma is invalid if it starts the line or is not the end of the line def invalid_comma_placement?(node) normalize_spacing(condense_to_string(node.rule)) =~ /\n,|,[^\n]/ end # Since RuleNode.rule returns an array containing both String and # Sass::Script::Nodes, we need to condense it into a single string that we # can run a regex against. def condense_to_string(sequence_list) sequence_list.select { |item| item.is_a?(String) }.inject(:+) end # Removes extra spacing between lines in a comma-separated sequence due to # comments being removed in the parse phase. This makes it easy to check if # a comma is where belongs. def normalize_spacing(string_sequence) string_sequence.gsub(/,[^\S\n]*\n\s*/, ",\n") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
scss-lint-0.23.1 | lib/scss_lint/linter/single_line_per_selector.rb |