forked from sds/scss-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
disable_linter_reason.rb
63 lines (53 loc) · 1.76 KB
/
disable_linter_reason.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
63
module SCSSLint
# Checks for "reason" comments above linter-disabling comments.
class Linter::DisableLinterReason < Linter
include LinterRegistry
def visit_comment(node)
# No lint if the first line of the comment is not a command (because then
# either this comment has no commands, or the first line serves as a the
# reason for a command on a later line).
if comment_lines(node).first.match(COMMAND_REGEX)
visit_command_comment(node)
else
@previous_comment = node
end
end
def visit_command_comment(node)
if @previous_comment.nil?
report_lint(node)
return
end
# Not a "disable linter reason" if the last line of the previous comment is a command.
if comment_lines(@previous_comment).last.match(COMMAND_REGEX)
report_lint(node)
return
end
# No lint if the last line of the previous comment is on the previous line.
if @previous_comment.source_range.end_pos.line == node.source_range.end_pos.line - 1
return
end
# The "reason" comment doesn't have to be on the previous line, as long as it is exactly
# the previous node.
if previous_node(node) == @previous_comment
return
end
report_lint(node)
end
private
COMMAND_REGEX = %r{
(/|\*)\s* # Comment start marker
scss-lint:
(?<action>disable)\s+
(?<linters>.*?)
\s*(?:\*/|\n) # Comment end marker or end of line
}x
def comment_lines(node)
node.value.join.split("\n")
end
def report_lint(node)
add_lint(node,
'scss-lint:disable control comments should be preceded by a ' \
'comment explaining why the linters need to be disabled.')
end
end
end