forked from klembot/twinejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
48 lines (48 loc) · 802 Bytes
/
.eslintrc
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"rules": {
"brace-style": [
2,
"stroustrup",
{ "allowSingleLine": true }
],
"comma-dangle": 0,
"curly": [2, "all"],
"indent": [
2,
"tab",
{ "SwitchCase": 1 }
],
"max-len": [
2,
80,
{
"ignoreUrls": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}
],
"newline-after-var": [2, "always"],
"no-console": [
2,
{ "allow": ["warn"] }
],
"no-extra-semi": 0,
"no-mixed-spaces-and-tabs": 0,
"no-trailing-spaces": [
2,
{ "skipBlankLines": true }
],
"quote-props": 0,
"semi": [
2,
"always"
],
},
"env": {
"browser": true,
"es6": true,
"commonjs": true,
"node": true
},
"extends": "eslint:recommended"
}