-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.json
92 lines (92 loc) · 2.22 KB
/
.eslintrc.json
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
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": ["eslint:recommended", "airbnb/base"],
"globals": {
// Google spreadsheet
"SpreadsheetApp": false,
"UrlFetchApp": false,
"PropertiesService": false,
// Google spreadsheet test library
"GasTap": false,
// Version.js
"VERSION": false,
// Code.js
"MBADDRESS": false,
"MBADDRESSATBLOCK": false,
"MBADDRESSATTIME": false,
"MBBLOCK": false,
"MBCOMPOSE": false,
"MBCUSTOMQUERY": false,
"MBCUSTOMQUERYTEMPLATE": false,
"MBEVENTLIST": false,
"MBEVENTS": false,
"MBFUNCTIONLIST": false,
"MBGET": false,
"MBGETATBLOCK": false,
"MBGETATTIME": false,
"MBPOSTTEMPLATE": false,
"MBQUERY": false,
"MBTX": false,
// Build.js
"buildSigDef": false,
"buildInputs": false,
"buildSeqHeader": false,
"buildNumInputsOrOutputs": false,
"buildFunctionInputsOrOutputs": false,
"buildAssociations": false,
"buildTxHashes": false,
"buildMethodArgs": false,
"buildQueryOptions": false,
"buildCustomQuery": false,
// Util.js
"normalizeCreds": false,
"isNaturalNumber": false,
"functionsToArray": false,
"clampBool": false,
"txToArray": false,
"blockToArray": false,
"addressToArray": false,
"objectArrayToArray": false,
"eventsToArray": false,
"formatDateTime": false,
"convertDateTimeToUTC": false,
"credentialsExist": false,
// Validate.js
"validateBlockTxHash": false,
"validateBlockNumOrHash": false,
"validateApiKey": false,
"validateDeploymentId": false,
"getDeploymentId": false,
// Query.js
"query": false,
"limitQuery": false,
// Property.js
"fallbackProperties": false,
"setProperty": false,
"getProperty": false,
"deleteAllProperties": false,
"PROP_MB_API_KEY": false,
"PROP_MB_DEPLOYMENT_ID": false,
"URL_SCHEME": false,
"URL_BASE": false,
"HTTP_GET": false,
"HTTP_POST": false,
"DEPLOYMENT_DOMAIN": false,
// Others
"BigInt": false,
"before": false,
"beforeEach": false,
"it": false,
"assert": false
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"no-plusplus": "off"
}
}