forked from sds/scss-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
space_after_variable_colon.rb
62 lines (51 loc) · 1.86 KB
/
space_after_variable_colon.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 spaces following the colon that separates a variable's name from
# its value.
class Linter::SpaceAfterVariableColon < Linter
include LinterRegistry
def visit_variable(node)
whitespace = whitespace_after_colon(node)
case config['style']
when 'no_space'
check_for_no_spaces(node, whitespace)
when 'one_space'
check_for_one_space(node, whitespace)
when 'at_least_one_space'
check_for_at_least_one_space(node, whitespace)
when 'one_space_or_newline'
check_for_one_space_or_newline(node, whitespace)
end
end
private
def check_for_no_spaces(node, whitespace)
return if whitespace == []
add_lint(node, 'Colon after variable should not be followed by any spaces')
end
def check_for_one_space(node, whitespace)
return if whitespace == [' ']
add_lint(node, 'Colon after variable should be followed by one space')
end
def check_for_at_least_one_space(node, whitespace)
return if whitespace.uniq == [' ']
add_lint(node, 'Colon after variable should be followed by at least one space')
end
def check_for_one_space_or_newline(node, whitespace)
return if [[' '], ["\n"]].include?(whitespace)
return if whitespace[0] == "\n" && whitespace[1..-1].uniq == [' ']
add_lint(node, 'Colon after variable should be followed by one space or a newline')
end
def whitespace_after_colon(node)
whitespace = []
offset = 0
start_pos = node.source_range.start_pos
# Find the colon after the variable name
offset = offset_to(start_pos, ':', offset) + 1
# Count spaces after the colon
while [' ', "\t", "\n"].include?(character_at(start_pos, offset))
whitespace << character_at(start_pos, offset)
offset += 1
end
whitespace
end
end
end