```lang=bash
> 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>
```