Page MenuHomePhabricator

Don't explicitly pass `--color=never` to `coffeelint`
ClosedPublic

Authored by joshuaspence on Jan 11 2015, 7:57 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Feb 8, 1:01 AM
Unknown Object (File)
Sat, Feb 8, 1:01 AM
Unknown Object (File)
Sat, Feb 8, 1:00 AM
Unknown Object (File)
Sat, Feb 8, 1:00 AM
Unknown Object (File)
Sun, Feb 2, 9:49 PM
Unknown Object (File)
Fri, Jan 31, 7:51 AM
Unknown Object (File)
Sat, Jan 25, 7:16 PM
Unknown Object (File)
Sat, Jan 25, 4:21 PM
Subscribers

Details

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>

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

joshuaspence retitled this revision from to Don't explcitly pass `--color=never` to `coffeelint`.
joshuaspence updated this object.
joshuaspence edited the test plan for this revision. (Show Details)
joshuaspence added a reviewer: epriestley.
epriestley edited edge metadata.
This revision is now accepted and ready to land.Jan 11 2015, 4:56 PM
joshuaspence retitled this revision from Don't explcitly pass `--color=never` to `coffeelint` to Don't explicitly pass `--color=never` to `coffeelint`.Jan 11 2015, 7:48 PM
joshuaspence edited edge metadata.
This revision was automatically updated to reflect the committed changes.