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

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

There is a newer version: 3.7.2
Show 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 - 2025 Weber Informatics LLC | Privacy Policy