Skip to content

Commit 5f7d697

Browse files
committed
added support files
1 parent 4f6b266 commit 5f7d697

File tree

4 files changed

+120
-0
lines changed

4 files changed

+120
-0
lines changed

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
root = true
4+
5+
# defaults to tab-indented (use smart-tabs)
6+
[*]
7+
indent_style = tab
8+
end_of_line = lf
9+
charset = "utf-8"
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
# generated json is using 2 spaces
14+
{package.json}
15+
indent_style = space
16+
indent_size = 2

.jshintrc

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"bitwise": true,
3+
"camelcase": false,
4+
"curly": true,
5+
"eqeqeq": true,
6+
"es3": false,
7+
"forin": true,
8+
"freeze": true,
9+
"immed": true,
10+
"indent": 4,
11+
"latedef": true,
12+
"newcap": true,
13+
"noarg": true,
14+
"noempty": true,
15+
"nonew": true,
16+
"plusplus": false,
17+
"quotmark": true,
18+
"undef": true,
19+
"unused": true,
20+
"strict": false,
21+
"trailing": true,
22+
23+
"maxlen": 180,
24+
25+
"asi": false,
26+
"boss": false,
27+
"debug": false,
28+
"eqnull": false,
29+
"esnext": true,
30+
"evil": false,
31+
"expr": false,
32+
"funcscope": false,
33+
"gcl": false,
34+
"globalstrict": false,
35+
"iterator": false,
36+
"lastsemic": false,
37+
"laxbreak": false,
38+
"laxcomma": false,
39+
"loopfunc": false,
40+
"maxerr": 50,
41+
"moz": false,
42+
"multistr": false,
43+
"notypeof": false,
44+
"proto": false,
45+
"scripturl": false,
46+
"smarttabs": true,
47+
"shadow": false,
48+
"sub": false,
49+
"supernew": false,
50+
"validthis": false,
51+
52+
"browser": false,
53+
"couch": false,
54+
"devel": false,
55+
"dojo": false,
56+
"jquery": false,
57+
"mootools": false,
58+
"node": true,
59+
"nonstandard": false,
60+
"prototypejs": false,
61+
"rhino": false,
62+
"worker": false,
63+
"wsh": false,
64+
"yui": false,
65+
66+
"globals": {
67+
"describe": true,
68+
"it": true,
69+
"beforeEach": true,
70+
"afterEach": true,
71+
"before": true,
72+
"after": true,
73+
"define": true,
74+
"chai": true,
75+
"assert": true
76+
}
77+
}

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: node_js
2+
node_js:
3+
- "0.10"
4+
5+
before_script:
6+
- npm install -g grunt-cli

LICENCE-MIT

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2014 DefinitelyTyped
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

0 commit comments

Comments
 (0)