-
Notifications
You must be signed in to change notification settings - Fork 9
/
cast.code-workspace
190 lines (190 loc) · 5.45 KB
/
cast.code-workspace
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"extensions": {
"recommendations": [
"googlecloudtools.cloudcode",
"msjsdiag.debugger-for-chrome",
"jingkaizhao.vscode-redux-devtools",
"ms-azuretools.vscode-docker",
"redhat.vscode-yaml",
"mikestead.dotenv",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"eg2.vscode-npm-script",
"juanblanco.solidity"
]
},
"folders": [
{
"name": "chain-auth",
"path": "packages/cast/chain-auth"
},
{
"name": "cast-interface-v1",
"path": "packages/cast/cast-interface-v1"
},
{
"name": "models",
"path": "packages/cast/models"
},
{
"name": "oracle-clients",
"path": "packages/cast/oracle-clients"
},
{
"name": "oracles",
"path": "packages/cast/oracles"
},
{
"name": "cast-eth-v1",
"path": "packages/cast/cast-eth-v1"
},
{
"name": "cast-tz-v1",
"path": "packages/cast/cast-tz-v1"
},
{
"name": "forge-platform",
"path": "."
}
],
"settings": {
"conventionalCommits.scopes": [
"fro",
"fso",
"fio",
"str",
"eth",
"tez",
"ci",
"charts",
"images",
"tests-fb",
"tests-ob",
"tests-e2e",
"doc",
"oracle"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"editor.formatOnType": false,
"editor.rulers": [
80
],
"editor.tabSize": 2,
"files.eol": "\n",
"files.exclude": {
"packages/sgforge/www": true,
"packages/cast/cast-eth-v1": true,
"packages/cast/cast-tz-v1": true,
"charts": true,
"packages": true
},
"eslint.enable": true,
"eslint.format.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"solidity"
],
"eslint.workingDirectories": [
{
"mode": "location"
}
],
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"git.ignoreLimitWarning": true,
"javascript.autoClosingTags": false,
"javascript.format.enable": false,
"javascript.preferences.importModuleSpecifier": "relative",
"javascript.format.insertSpaceAfterCommaDelimiter": false,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"javascript.format.insertSpaceAfterSemicolonInForStatements": false,
"javascript.format.insertSpaceBeforeAndAfterBinaryOperators": false,
"javascript.validate.enable": false,
"prettier.requireConfig": true,
"solidity.compileUsingRemoteVersion": "v0.6.7+commit.b8d736ae",
"solidity.enabledAsYouTypeCompilationErrorCheck": true,
"solidity.enabledSolium": false,
"solidity.formatter": "prettier",
"solidity.linter": "solhint",
"solidity.solhintRules": {
"array-declaration-spaces": "warn",
"avoid-call-value": "warn",
"avoid-low-level-calls": "warn",
"avoid-sha3": "warn",
"avoid-suicide": "error",
"avoid-throw": "off",
"avoid-tx-origin": "warn",
"bracket-align": "warn",
"check-send-result": "warn",
"compiler-version": [
"error",
"0.6.7"
],
"const-name-snakecase": "warn",
"constructor-syntax": "warn",
"contract-name-camelcase": "warn",
"event-name-camelcase": "warn",
"expression-indent": "warn",
"func-name-mixedcase": "warn",
"func-visibility": "warn",
"imports-on-top": "warn",
"mark-callable-contracts": "warn",
"max-states-count": [
"warn",
15
],
"multiple-sends": "warn",
"no-complex-fallback": "warn",
"no-empty-blocks": "warn",
"no-inline-assembly": "warn",
"no-mix-tabs-and-spaces": "warn",
"no-spaces-before-semicolon": "warn",
"no-unused-vars": "warn",
"not-rely-on-block-hash": "warn",
"not-rely-on-time": "warn",
"payable-fallback": "warn",
"prettier/prettier": "error",
"quotes": [
"error",
"double"
],
"reentrancy": "warn",
"space-after-comma": "warn",
"state-visibility": "warn",
"statement-indent": "warn",
"use-forbidden-name": "warn",
"var-name-mixedcase": "warn",
"visibility-modifier-order": "warn"
},
"solidity.validationDelay": 1500,
"tslint.enable": false,
"typescript.format.enable": false,
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.format.insertSpaceAfterCommaDelimiter": false,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"typescript.format.insertSpaceAfterSemicolonInForStatements": false,
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": false,
"typescript.reportStyleChecksAsWarnings": false,
"typescript.tsdk": "forge-platform/node_modules/typescript/lib",
"workbench.editor.enablePreview": false,
"solidity.enableLocalNodeCompiler": false,
"python.formatting.autopep8Args": [
"--ignore",
"E402"
]
}
}