mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 04:46:20 +00:00
nikugogoi
1c15c1eedb
* Test case for calling EdenNetwork event handler * Test cases for calling EdenNetwork event handlers * Test cases for calling event handlers in EdenNetworkDistribution * Test cases for calling event handlers in EdenNetworkGovernance * Perform eth-calls according to contract name in param * Pass function params in eth-call host API * Return value from eth-call to wasm * Add instructions for running tests * Install assemblyscript from github packages * Add instrcutions for installing private github packages * Use vulcanize assemblyscript package
23 lines
493 B
JSON
23 lines
493 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"semistandard",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off"
|
|
}
|
|
}
|