defunkt (owner)

Forks

Revisions

gist: 227361 Download_button fork
public
Description:
Reduce your carbon footprint
Public Clone URL: git://gist.github.com/227361.git
Embed All Files: show embed
carbon.md #

Vim

autocmd BufWritePre * :%s/\s\+$//e

Emacs

(add-hook 'before-save-hook 'delete-trailing-whitespace)

Textmate

http://blogobaggins.com/2009/03/31/waging-war-on-whitespace.html

In your existing codebase

find . -name '*.rb' | xargs perl -pi -e 's/ +$//'