forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
44 lines (44 loc) · 969 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
43
44
{
"env": {
"browser": true
},
"globals": {
"ionic": true,
"IonicModule": true,
"angular": true,
"jqLite": true,
"forEach": true,
"isDefined": true,
"isNumber": true,
"isString": true,
"noop": true,
"extend": true,
"deprecated": true,
"cordova": true,
"DocumentTouch": true,
"describe": true,
"ddescribe": true,
"it": true,
"iit": true,
"inject": true,
"beforeEach": true,
"afterEach": true,
"expect": true
},
"rules": {
"quotes": false,
"no-underscore-dangle": false,
"no-unused-expressions": false,
"curly": [2, "multi-line"],
"strict": false,
"no-use-before-define": false,
"eqeqeq": false,
"new-cap": [2, {"capIsNew": false}],
"dot-notation": [2, {"allowKeywords": false}],
"no-console": false,
"no-return-assign": false,
"no-shadow": false,
"comma-dangle": false,
"camelcase": [2, {"properties": "never"}]
}
}