Closed filipebarcos closed 9 years ago
@filipebarcos , could you check the README you generated? https://github.com/filipebarcos/ruby-tricks/blob/b10cc8c97147abefaed09254f39502e7ebcdc4f1/README.md
@filipebarcos we should probably fix the README generator rather than fixing the markdown file: https://github.com/franzejr/ruby-tricks/blob/master/Rakefile
@rafaelsales could let the rake task touch files beyond README, trimming whitespace from *.rb as well
People are not taking care of removing trailing whitespace from the files they touch. That adds a lot of noise for code reviews.
to help you remove it consider:
(add-hook 'before-save-hook 'delete-trailing-whitespace)
into your.emacs
fileautocmd BufWritePre * :%s/\s\+$//e
into your.vimrc
file