forked from pusspounder/CapMyFreeCamsChaturbateNodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
42 lines (42 loc) · 830 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
{
"parser": "babel-eslint",
"extends": "airbnb/legacy",
"env": {
"browser": true,
"jquery": true
},
"globals": {
"_": true,
"hljs": true,
"google": true,
"angular": true
},
"rules": {
"quotes": [2, "single"],
"comma-dangle": [2, "never"],
"func-names": [1, "never"],
"max-len": 0,
"wrap-iife": [2, "inside"],
"dot-notation": [2, {
"allowKeywords": true,
"allowPattern": "^(delete|finally)$"
}],
"no-param-reassign": [2, {
"props": false }
],
"no-mixed-operators": [2, {
"groups": []
}],
"no-unused-vars": [2, {
"args": "none"
}],
"vars-on-top": 0,
"no-use-before-define": [2, {
"functions": true,
"classes": true
}],
"no-underscore-dangle": [2, {
"allow": ["_id"]
}]
}
}