jashkenas / coffee-script-tmbundle

A TextMate Bundle for CoffeeScript
MIT License
820 stars 234 forks source link

Coffee Lint command #115

Open darcnite3000 opened 12 years ago

darcnite3000 commented 12 years ago

I added to my coffee script bundle a new command which runs CoffeeLint for making sure my coffee script is nice and clean

#!/bin/bash
coffeelint "$TM_FILEPATH" | ansifilter -H;

AnsiFilter i found on homebrew and i converts shell outputs

http://www.coffeelint.org/ http://www.andre-simon.de/doku/ansifilter/en/ansifilter.html

I suppose someone can figure out if adding this into this bundle is a good thing or not... I just wanted to show other people what i have setup

brianmcallister commented 11 years ago

Just chiming in to say I'm really finding this useful. Thanks for the tip. :thumbsup: