-
Notifications
You must be signed in to change notification settings - Fork 4
/
hubot.cson
34 lines (33 loc) · 818 Bytes
/
hubot.cson
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Comment formatting for https://github.com/github/hubot-scripts/
# completes in `.coffee` and `.js`
#
# Examples
#
# `hubot<tab>`
#
".source.coffee" :
"Hubot Script skeleton" :
"prefix" : "hubot"
"body" : """
# Description:
# ${1:A description of your Hubot Script}
#
# Commands:
# hubot ${2:Your command trigger} - ${3:Description of what your command does}
#
# Author:
# ${4:Your GitHub username}
"""
".source.js" :
"Hubot Script skeleton" :
"prefix" : "hubot"
"body" : """
// Description:
// ${1:A description of your Hubot Script}
//
// Commands:
// hubot ${2:Your command trigger} - ${3:Description of what your command does}
//
// Author:
// ${4:Your GitHub username}
"""