forked from zalando/tailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
32 lines (32 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
32
{
"env": {
"browser": false,
"es6": true,
"node": true
},
"rules": {
"brace-style": [2, "1tbs"],
"comma-style": [2, "last"],
"curly": 2,
"indent": [2, 4, { "SwitchCase": 1 }],
"no-underscore-dangle": 0,
"no-constant-condition": 2,
"no-dupe-args": 2,
"no-debugger": 2,
"no-duplicate-case": 2,
"no-empty": 2,
"no-empty-character-class": 2,
"no-eval": 2,
"no-unused-vars": 2,
"no-lonely-if": 2,
"quotes": [2, "single"],
"semi": [2, "always"],
"keyword-spacing": [2],
"space-before-blocks": [2, "always"],
"strict": [2, "global"]
},
"globals": {
"require": false,
"module": false
}
}