-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathdeclaration_order.rb
38 lines (30 loc) · 937 Bytes
/
declaration_order.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
module SCSSLint
# Checks the order of nested items within a rule set.
class Linter::DeclarationOrder < Linter
include LinterRegistry
DECLARATION_ORDER = [
Sass::Tree::ExtendNode,
Sass::Tree::PropNode,
Sass::Tree::RuleNode,
]
def visit_rule(node)
children = node.children.select { |node| important_node?(node) }.
map { |node| node.class }
sorted_children = children.sort do |a, b|
DECLARATION_ORDER.index(a) <=> DECLARATION_ORDER.index(b)
end
if children != sorted_children
add_lint(node.children.first)
end
yield # Continue linting children
end
def description
'Rule sets should start with @extend declarations, followed by ' <<
'properties and nested rule sets, in that order'
end
private
def important_node?(node)
DECLARATION_ORDER.include? node.class
end
end
end