Don't explicitly pass --color=never to coffeelint
Summary: This flag doesn't do anything in combination with --reporter=checkstyle.
Test Plan:
> coffeelint --reporter=checkstyle test.coffee <?xml version="1.0" encoding="utf-8"?> <checkstyle version="4.3"> <file name="test.coffee"> <error line="1" severity="error" message="Class names should be camel cased; context: class name: boaConstrictor" source="coffeelint"/> </file> </checkstyle> > coffeelint --reporter=checkstyle --color=never test.coffee <?xml version="1.0" encoding="utf-8"?> <checkstyle version="4.3"> <file name="test.coffee"> <error line="1" severity="error" message="Class names should be camel cased; context: class name: boaConstrictor" source="coffeelint"/> </file> </checkstyle>
Reviewers: Blessed Reviewers, epriestley
Reviewed By: Blessed Reviewers, epriestley
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D11318