aligner-coffeescript

CoffeeScript support for aligner

adrianlee44

1,267

3

1.2.0

MIT

GitHub

This package provides the following services:

aligner-coffeescript

Aligner add-on to support Coffeescript.

Supported character/operator

=: 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'

Installation

Aligner must be installed along with this package. For more information, please check out Aligner

Changelog