Sha256: 55fc932b50d80b057cd5bad8f8ef6d8689251fb255dcd1692f55969e754b6280

Contents?: true

Size: 919 Bytes

Versions: 23

Compression:

Stored size: 919 Bytes

Contents

module SCSSLint
  # Checks for the presence of spaces between parentheses.
  class Linter::SpaceBetweenParens < Linter
    include LinterRegistry

    def visit_root(_node)
      @spaces = config['spaces']

      engine.lines.each_with_index do |line, index|
        line.gsub(%r{((//|/\*).*$)}, '').scan(/
          (^(\t|\s)*\))?  # Capture leading spaces and tabs followed by a `)`
          (
            \([ ]*(?!$)   # Find `( ` as long as its not EOL )
            |
            [ ]*\)
          )?
        /x) do |match|
          check(match[2], index) if match[2]
        end
      end
    end

  private

    def check(str, index)
      spaces = str.count ' '
      return if spaces == @spaces

      location = Location.new(index + 1)
      message = "Expected #{pluralize(@spaces, 'space')} " \
                "between parentheses instead of #{spaces}"
      add_lint(location, message)
    end
  end
end

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
scss-lint-0.25.0 lib/scss_lint/linter/space_between_parens.rb
scss-lint-0.24.1 lib/scss_lint/linter/space_between_parens.rb
scss-lint-0.24.0 lib/scss_lint/linter/space_between_parens.rb