Skip to content

Commit 0b6536b

Browse files
committedFeb 11, 2018
Merge branch '3.x'
2 parents 60a5c3b + a48c24c commit 0b6536b

File tree

174 files changed

+9220
-1880
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+9220
-1880
lines changed
 

‎.eslintrc.json

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"env": {
3+
"node": true
4+
},
5+
"globals": {},
6+
"rules": {
7+
"no-eval": 2,
8+
"no-use-before-define": [
9+
2,
10+
{
11+
"functions": false
12+
}
13+
],
14+
"no-undef": 0,
15+
"no-unused-vars": 1,
16+
"no-caller": 2,
17+
"no-eq-null": 1,
18+
"guard-for-in": 2,
19+
"no-implicit-coercion": [
20+
2,
21+
{
22+
"boolean": false,
23+
"string": true,
24+
"number": true
25+
}
26+
],
27+
"no-with": 2,
28+
"no-mixed-spaces-and-tabs": 2,
29+
"no-multiple-empty-lines": 2,
30+
"dot-location": [
31+
2,
32+
"property"
33+
],
34+
"operator-linebreak": [
35+
0,
36+
"after"
37+
],
38+
"keyword-spacing": [
39+
2,
40+
{}
41+
],
42+
"space-unary-ops": [
43+
2,
44+
{
45+
"words": false,
46+
"nonwords": false
47+
}
48+
],
49+
"no-spaced-func": 2,
50+
"space-before-function-paren": [
51+
1,
52+
{
53+
"anonymous": "ignore",
54+
"named": "never"
55+
}
56+
],
57+
"comma-dangle": [
58+
2,
59+
"never"
60+
],
61+
"no-trailing-spaces": 0,
62+
"max-len": [
63+
2,
64+
160
65+
],
66+
"comma-style": [
67+
2,
68+
"last"
69+
],
70+
"curly": [
71+
2,
72+
"all"
73+
],
74+
"space-infix-ops": 2,
75+
"spaced-comment": 1,
76+
"space-before-blocks": [
77+
2,
78+
"always"
79+
],
80+
"indent": [
81+
2,
82+
4,
83+
{
84+
"SwitchCase": 1
85+
}
86+
]
87+
}
88+
}

‎.github/stale.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 120
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 14
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- up-for-grabs
8+
- bug
9+
# Label to use when marking an issue as stale
10+
staleLabel: stale
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs. Thank you
15+
for your contributions.
16+
# Comment to post when closing a stale issue. Set to `false` to disable
17+
closeComment: false

0 commit comments

Comments
 (0)
Please sign in to comment.