Skip to content

Commit 7c92a4c

Browse files
committed
CoffeeScript.yaml: Add CoffeeScript language
Related to coala#57
1 parent 12cabec commit 7c92a4c

File tree

3 files changed

+76
-0
lines changed

3 files changed

+76
-0
lines changed

data/DataType/bool_coffee.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
keyword: bool
2+
integer-min: '0'
3+
integer-max: '1'
4+
integer-signed: false
5+
literals:
6+
- 'true'
7+
- 'false'

data/Delimiter/triple_hash.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
type: comment
2+
start: '###'
3+
end: '###'

data/Language/CoffeeScript.yaml

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
identifier: CoffeeScript
2+
wikidata: Q1106819
3+
aliases:
4+
- coffee
5+
creation_date: 20091213
6+
extensions:
7+
- coffee
8+
- litcoffee
9+
line_continuation:
10+
- backslash
11+
delimiters:
12+
- hash
13+
- triple_hash
14+
- single_quote_slash_escape
15+
- double_quote_slash_escape
16+
- triple_single_quote
17+
- triple_double_quote
18+
- backticks
19+
- curly_braces
20+
- round_braces
21+
- square_braces
22+
datatypes:
23+
- bool_coffee
24+
keywords:
25+
- Infinity
26+
- NaN
27+
- and
28+
- arguments
29+
- await
30+
- break
31+
- by
32+
- catch
33+
- class
34+
- continue
35+
- default
36+
- defer
37+
- delete
38+
- do
39+
- else
40+
- extends
41+
- finally
42+
- for
43+
- if
44+
- in
45+
- instanceof
46+
- is
47+
- isnt
48+
- loop
49+
- new
50+
- not
51+
- null
52+
- of
53+
- or
54+
- return
55+
- super
56+
- switch
57+
- then
58+
- this
59+
- throw
60+
- try
61+
- typeof
62+
- undefined
63+
- unless
64+
- when
65+
- while
66+
- yield

0 commit comments

Comments
 (0)