Skip to content

Commit 04000c5

Browse files
committed
initial
0 parents  commit 04000c5

40 files changed

+3613
-0
lines changed

.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
[*.md]
11+
trim_trailing_whitespace = false

.eslintrc

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
{
2+
"extends": "eslint:recommended",
3+
"env": {
4+
"node": true,
5+
"mocha": true,
6+
"es6": true
7+
},
8+
"ecmaFeatures": {
9+
"jsx": true,
10+
"modules": true
11+
},
12+
"rules": {
13+
"array-bracket-spacing": [
14+
2,
15+
"never"
16+
],
17+
"brace-style": [
18+
2,
19+
"1tbs"
20+
],
21+
"consistent-return": 0,
22+
"indent": [
23+
2,
24+
2
25+
],
26+
"no-multiple-empty-lines": [
27+
2,
28+
{
29+
"max": 2
30+
}
31+
],
32+
"no-use-before-define": [
33+
2,
34+
"nofunc"
35+
],
36+
"one-var": [
37+
2,
38+
"never"
39+
],
40+
"quote-props": [
41+
2,
42+
"as-needed"
43+
],
44+
"quotes": [
45+
2,
46+
"single"
47+
],
48+
"space-after-keywords": [
49+
2,
50+
"always"
51+
],
52+
"space-before-function-paren": [
53+
2,
54+
{
55+
"anonymous": "always",
56+
"named": "never"
57+
}
58+
],
59+
"space-in-parens": [
60+
2,
61+
"never"
62+
],
63+
"strict": [
64+
2,
65+
"global"
66+
],
67+
"curly": [
68+
2,
69+
"all"
70+
],
71+
"eol-last": 2,
72+
"key-spacing": [
73+
2,
74+
{
75+
"beforeColon": false,
76+
"afterColon": true
77+
}
78+
],
79+
"no-eval": 2,
80+
"no-with": 2,
81+
"space-infix-ops": 2,
82+
"dot-notation": [
83+
2,
84+
{
85+
"allowKeywords": true
86+
}
87+
],
88+
"eqeqeq": 2,
89+
"no-alert": 2,
90+
"no-caller": 2,
91+
"no-empty-label": 2,
92+
"no-extend-native": 2,
93+
"no-extra-bind": 2,
94+
"no-implied-eval": 2,
95+
"no-iterator": 2,
96+
"no-label-var": 2,
97+
"no-labels": 2,
98+
"no-lone-blocks": 2,
99+
"no-loop-func": 2,
100+
"no-multi-spaces": 2,
101+
"no-multi-str": 2,
102+
"no-native-reassign": 2,
103+
"no-new": 2,
104+
"no-new-func": 2,
105+
"no-new-wrappers": 2,
106+
"no-octal-escape": 2,
107+
"no-proto": 2,
108+
"no-return-assign": 2,
109+
"no-script-url": 2,
110+
"no-sequences": 2,
111+
"no-unused-expressions": 2,
112+
"yoda": 2,
113+
"no-shadow": 2,
114+
"no-shadow-restricted-names": 2,
115+
"no-undef-init": 2,
116+
"camelcase": 2,
117+
"comma-spacing": 2,
118+
"new-cap": 2,
119+
"new-parens": 2,
120+
"no-array-constructor": 2,
121+
"no-extra-parens": 2,
122+
"no-new-object": 2,
123+
"no-spaced-func": 2,
124+
"no-trailing-spaces": 2,
125+
"no-underscore-dangle": 2,
126+
"semi": 2,
127+
"semi-spacing": [
128+
2,
129+
{
130+
"before": false,
131+
"after": true
132+
}
133+
],
134+
"space-return-throw-case": 2
135+
}
136+
}

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
coverage
3+
test
4+
tests
5+
RoboFile.php
6+
.vscode
7+
coverage

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: node_js
2+
node_js:
3+
- '0.10'
4+
- '0.12'
5+
- 'iojs'

0 commit comments

Comments
 (0)