Open renchap opened 7 years ago
what exactly do you want linted?
Currently with a simple CS2 file with JSX I am getting lint errors:
# content-text.coffee
import React from 'react'
export default class ContentText extends React.Component
render: ->
<div className="td-content-text">
Content Text
</div>
$ coffeelint --version
2.0.5
$ coffeelint content_text.coffee
✗ content_text.coffee
✗ #5: Colon assignment without proper spacing. Incorrect spacing around column 18.
✗ #5: a space is required after commas.
✗ #5: a space is required after commas.
✗ Lint! » 3 errors and 0 warnings in 1 file
The only JSX specific rule that I have in mind would be for the quotes style (simple/double).
JSX is now supported in CS2: http://coffeescript.org/#jsx
It would be awesome to have the syntax supported in coffeelint (it is currently reporting errors).