forked from sds/scss-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmergeable_selector.rb
62 lines (48 loc) · 1.59 KB
/
mergeable_selector.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module SCSSLint
# Checks for rule sets that can be merged with other rule sets.
class Linter::MergeableSelector < Linter
include LinterRegistry
def check_node(node)
node.children.each_with_object([]) do |child_node, seen_nodes|
next unless child_node.is_a?(Sass::Tree::RuleNode)
mergeable_node = find_mergeable_node(child_node, seen_nodes)
seen_nodes << child_node
next unless mergeable_node
rule_text = node_rule(child_node).gsub(/(\r?\n)+/, ' ')
add_lint child_node.line,
"Merge rule `#{rule_text}` with rule " \
"on line #{mergeable_node.line}"
end
yield # Continue linting children
end
alias_method :visit_root, :check_node
alias_method :visit_rule, :check_node
private
def find_mergeable_node(node, seen_nodes)
seen_nodes.find do |seen_node|
equal?(node, seen_node) ||
(config['force_nesting'] && nested?(node, seen_node))
end
end
def equal?(node1, node2)
node_rule(node1) == node_rule(node2)
end
def nested?(node1, node2)
return false unless single_rule?(node1) && single_rule?(node2)
rule1 = node_rule(node1)
rule2 = node_rule(node2)
subrule?(rule1, rule2) || subrule?(rule2, rule1)
end
def node_rule(node)
node.rule.join
end
def single_rule?(node)
return unless node.parsed_rules
node.parsed_rules.members.count == 1
end
def subrule?(rule1, rule2)
"#{rule1}".start_with?("#{rule2} ") ||
"#{rule1}".start_with?("#{rule2}.")
end
end
end