-
Notifications
You must be signed in to change notification settings - Fork 465
/
zero_unit.rb
48 lines (37 loc) · 1.35 KB
/
zero_unit.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
# frozen_string_literal: true
module SCSSLint
# Checks for unnecessary units on zero values.
class Linter::ZeroUnit < Linter
include LinterRegistry
def visit_script_string(node)
return unless node.type == :identifier
return if node.value.start_with?('calc(')
node.value.scan(ZERO_UNIT_REGEX) do |match|
next unless zero_with_length_units?(match.first)
add_lint(node, MESSAGE_FORMAT % match.first)
end
end
def visit_script_number(node)
length = source_from_range(node.source_range)[ZERO_UNIT_REGEX, 1]
return unless zero_with_length_units?(length)
add_lint(node, MESSAGE_FORMAT % length)
end
def visit_script_funcall(node)
# Don't report errors for values within `calc` expressions, since they
# require units in order to work
yield unless node.name == 'calc'
end
private
ZERO_UNIT_REGEX = /
\b
(?<!\.|\#) # Ignore zeroes following `#` (colors) or `.` (decimals)
(0[a-z]+) # Zero followed by letters indicating some sort of unit
\b
/ix.freeze
MESSAGE_FORMAT = '`%s` should be written without units as `0`'.freeze
LENGTH_UNITS = %w[em ex ch rem vw vh vmin vmax cm mm in pt pc px].to_set
def zero_with_length_units?(string)
string =~ /^0([a-z]+)/ && LENGTH_UNITS.include?(Regexp.last_match(1))
end
end
end