forked from Famous/famous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
32 lines (32 loc) · 800 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
{
"env": {
"browser": true,
"amd": true
},
"globals": {
"DocumentFragment": true
},
"rules": {
"valid-jsdoc": 0,
"no-multi-spaces": 1,
"key-spacing": 1,
"comma-spacing": 1,
"no-shadow": 1,
"curly": [1, "multi"],
"brace-style": [1, "stroustrup"],
"consistent-this": 2,
"no-constant-condition": 1,
"no-underscore-dangle": 0,
"no-use-before-define": 1,
"func-names": 0,
"func-style": [2, "declaration"],
"new-cap": 1,
"new-parens": 2,
"no-ternary": 0,
"no-unused-vars": [1, {"vars": "local", "args": "none"}],
"quotes": [2, "single"],
"one-var": 0,
"space-infix-ops": 0,
"strict": 0
}
}