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)
Dec 10 2024, 1:38 PM
Unknown Object (File)
Nov 26 2024, 7:10 PM
Unknown Object (File)
Nov 26 2024, 2:53 AM
Unknown Object (File)
Nov 26 2024, 2:53 AM
Unknown Object (File)
Nov 26 2024, 2:51 AM
Unknown Object (File)
Nov 21 2024, 11:00 PM
Unknown Object (File)
Nov 18 2024, 8:35 AM
Unknown Object (File)
Nov 13 2024, 6: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.