-
Notifications
You must be signed in to change notification settings - Fork 12
/
.eslintrc
99 lines (99 loc) · 2.51 KB
/
.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"env": {
"browser": true,
"es6": true,
"node": true,
"cypress/globals": true
},
"plugins": [
"cypress"
],
"extends": [
"eslint:recommended",
"plugin:cypress-dev/general",
"plugin:cypress-dev/tests"
],
"globals": {
"$": false,
"_": false,
"alert": false,
"analytics": false,
"angular": false,
"annyang": false,
"Atomics": "readonly",
"backgroundGeoLocation": false,
"Bravey": false,
"Bugsnag": false,
"bugsnag": false,
"bugsnagClient": false,
"chcp": false,
"chrome": false,
"clearInterval": false,
"config": false,
"console": false,
"cordova": false,
"Cypress": true,
"dat": false,
"defer": false,
"deferred": false,
"document": false,
"drift": false,
"event": false,
"firebase": false,
"HumanConnect": false,
"inAppPurchase": false,
"ionic": false,
"Ionic": false,
"jasmine": false,
"jQuery": false,
"localforage": false,
"localStorage": false,
"location": false,
"module": false,
"moment": false,
"navigator": false,
"nlp": false,
"OverApps": false,
"pluralize": false,
"PouchDB": false,
"process": false,
"PushNotification": false,
"qm": false,
"qmLog": false,
"qmStates": false,
"Quantimodo": false,
"require": false,
"safari": false,
"screen": false,
"setInterval": false,
"setTimeout": false,
"SharedArrayBuffer": "readonly",
"SpeechKITT": false,
"speechUtteranceChunker": false,
"StatusBar": false,
"UserVoice": false,
"window": false,
"XMLHttpRequest": false
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"no-console": "off",
"indent": "off",
"padding-line-between-statements": "off",
"quotes": "off",
"object-curly-spacing": "off",
"space-before-function-paren": "off",
"space-before-blocks": "off",
"key-spacing": "off",
"prefer-template": "off",
"keyword-spacing": "off",
"no-var": "off",
"no-useless-escape": "off",
"prefer-rest-params": "off",
"eqeqeq": "off",
"no-prototype-builtins": "off"
}
}