Sha256: 84932d16fad4344e1fdcf671cb2bfe51f34c8eadf8a81bf68884b060cc0ca003

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

module SCSSLint
  # Checks for the unnecessary inclusion of a zero-value mantissa in numbers.
  # (e.g. `4.0` could be written as just `4`)
  class Linter::UnnecessaryMantissa < Linter
    include LinterRegistry

    def visit_script_string(node)
      return unless node.type == :identifier

      node.value.scan(REAL_NUMBER_REGEX) do |number, integer, mantissa, units|
        if unnecessary_mantissa?(mantissa)
          add_lint(node, MESSAGE_FORMAT % [number, integer, units])
        end
      end
    end

    def visit_script_number(node)
      return unless match = REAL_NUMBER_REGEX.match(source_from_range(node.source_range))

      if unnecessary_mantissa?(match[:mantissa])
        add_lint(node, MESSAGE_FORMAT % [match[:number], match[:integer], match[:units]])
      end
    end

  private

    REAL_NUMBER_REGEX = %r{
      \b(?<number>
        (?<integer>\d*)
        \.
        (?<mantissa>\d+)
        (?<units>\w*)
      )\b
    }ix

    MESSAGE_FORMAT = '`%s` should be written without the mantissa as `%s%s`'

    def unnecessary_mantissa?(mantissa)
      mantissa !~ /[^0]/
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
scss-lint-0.23.1 lib/scss_lint/linter/unnecessary_mantissa.rb
scss-lint-0.23.0 lib/scss_lint/linter/unnecessary_mantissa.rb