-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
34 lines (34 loc) · 816 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
{
"env": {
"jquery": true
},
"extends": "airbnb-base",
"globals": {
"Swiper": true,
"isMobile": true,
"Cleave": true,
"baron": true,
"document": true,
"window": true,
"FormData": true,
"fetch": true,
"navigator": true,
"_": true
},
"rules": {
"class-methods-use-this": [0],
"func-names": [0, "never"],
"max-len": [1, 180, 2, {"ignoreComments": true}],
"indent": ["error", 2, { "SwitchCase": 1 }],
"new-cap": ["error", { "properties": false }],
"radix": [0],
"no-unused-vars": [1, {"vars": "local", "args": "none"}],
"no-use-before-define": [0],
"import/prefer-default-export": [0],
"no-plusplus": [0],
"no-prototype-builtins": 0,
"no-underscore-dangle": 0,
"no-continue": 0,
"no-param-reassign": 0
}
}