gems.scss_lint-0.57.1.lib.scss_lint.linter.leading_zero.rb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
The newest version!
module SCSSLint
# Checks for unnecessary leading zeros in numeric values with decimal points.
class Linter::LeadingZero < Linter
include LinterRegistry
def visit_script_string(node)
return unless node.type == :identifier
non_string_values = remove_quoted_strings(node.value).split
non_string_values.each do |value|
next unless number = value[NUMBER_WITH_LEADING_ZERO_REGEX, 1]
check_for_leading_zeros(node, number)
end
end
def visit_script_number(node)
return unless number =
source_from_range(node.source_range)[NUMBER_WITH_LEADING_ZERO_REGEX, 1]
check_for_leading_zeros(node, number)
end
private
NUMBER_WITH_LEADING_ZERO_REGEX = /^-?(0?\.\d+)/
CONVENTIONS = {
'exclude_zero' => {
explanation: '`%s` should be written without a leading zero as `%s`',
validator: ->(original) { original =~ /^\.\d+$/ },
converter: ->(original) { original[1..-1] },
},
'include_zero' => {
explanation: '`%s` should be written with a leading zero as `%s`',
validator: ->(original) { original =~ /^0\.\d+$/ },
converter: ->(original) { "0#{original}" }
},
}.freeze
def check_for_leading_zeros(node, original_number)
style = config.fetch('style', 'exclude_zero')
convention = CONVENTIONS[style]
return if convention[:validator].call(original_number)
corrected = convention[:converter].call(original_number)
add_lint(node, convention[:explanation] % [original_number, corrected])
end
end
end