forked from westonjackson/happenings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (41 loc) · 810 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
{
"extends": "google",
"env": {
"browser": true
},
"rules": {
"camelcase": 0,
"default-case": 0,
"max-len": 0,
"max-nested-callbacks": 0,
"no-inline-comments": 0,
"no-warning-comments": 0,
"require-jsdoc": 0,
"valid-jsdoc": 0,
"no-implicit-coercion": [2, {
"boolean": false,
"number": true,
"string": true
}],
"no-unused-vars": [2, {
"vars": "all",
"args": "after-used",
"argsIgnorePattern": "^var_args$"
}],
"no-negated-condition": 0
},
"globals": {
"$": true,
"firebaseUi": true,
"uiConfig": true,
"jQuery": true,
"swal": true,
"latinize": true,
"componentHandler": true,
"friendlyPix": true,
"page": true,
"ga": true,
"firebase": true,
"gapi": true
}
}