Aligner add-on to support Coffeescript.
=
: assignment
foo = "bar"
test = "notest"
hello = "world"
+=
, -=
and other with =
foo = "bar"
test += "notest"
hello -= "world"
:
: Object
random =
troll: "internet"
foo: "bar"
bar: "beer"
,
: Items in arrays
["helloText", 123456, "world"]
["foo" , 32124, "bar"]
Comments (if Align Comments
options on)
hello = 'world' # line 1
foo = 'bar' # line 2
from
:
import foo from 'bar'
import * from 'https'
Aligner must be installed along with this package. For more information, please check out Aligner
- 2018-10-15 v1.2.0 Add support for
from
- 2018-10-12 v1.1.0 Add support for embedded coffeescript
- 2017-05-13 v1.0.1 Update README
- 2017-05-07 v1.0.0 Initial release