Sha256: 3525d90b4d47e14720f89d0d9bb8464f2f16fadd3bbe687ee7b5dfbfd56f3952
Contents?: true
Size: 837 Bytes
Versions: 1
Compression:
Stored size: 837 Bytes
Contents
# encoding: utf-8 require 'rails_best_practices/core/check' module RailsBestPractices module Lexicals # Make sure there are no trailing whitespace in codes. # # See the best practice details here http://rails-bestpractices.com/posts/60-remove-trailing-whitespace class RemoveTrailingWhitespaceCheck < Core::Check interesting_files ALL_FILES url "http://rails-bestpractices.com/posts/60-remove-trailing-whitespace" # check if the content of file contain a trailing whitespace. # # @param [String] filename name of the file # @param [String] content content of the file def check(filename, content) if content =~ / +\n/m line_no = $`.count("\n") + 1 add_error("remove trailing whitespace", filename, line_no) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_best_practices-1.13.8 | lib/rails_best_practices/lexicals/remove_trailing_whitespace_check.rb |