forked from RafaelVidaurre/yakuza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
31 lines (31 loc) · 796 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
{
"rules": {
"quotes": [2, "single"],
"one-var": 1,
"block-scoped-var": 2,
"no-else-return": 1,
"no-floating-decimal": 1,
"no-self-compare": 2,
"no-throw-literal": 2,
"radix": 1,
"vars-on-top": 1,
"indent": [2, 2],
"brace-style": [2, "1tbs"],
"comma-style": 1,
"consistent-this": [1, "_this"],
"no-underscore-dangle": 0,
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-parentheses": [2, "always"],
"space-in-brackets": [2, "never"],
"space-in-parens": [2, "never"],
"spaced-line-comment": [1, "always"],
"func-style": [2, "declaration"],
"quote-props": [2, "as-needed"],
"camelcase": 1,
"no-unused-vars": 1
},
"env": {
"node": true
}
}