All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.scss_lint-0.57.1.lib.scss_lint.linter.trailing_whitespace.rb Maven / Gradle / Ivy

The newest version!
module SCSSLint
  # Checks for trailing whitespace on a line.
  class Linter::TrailingWhitespace < Linter
    include LinterRegistry

    def visit_root(_node)
      engine.lines.each_with_index do |line, index|
        next unless line =~ /[ \t]+$/

        add_lint(index + 1, 'Line contains trailing whitespace')
      end
      yield
    end
  end
end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy