57aa950a2f
* type definitions * remove Object.assign(), use BigNumber * path custom ethers provider to constructor. test * providers test * using gas-price-oracle v0.5.0 * manager params provider type * provider type fix * update deps * maxPriorityFee param, tests fix * fix: cancel/replace * fix: gasParams check * fix: handleRpcError with web3 provider Co-authored-by: Danil Kovtonyuk <danx.kov@gmail.com>
46 lines
828 B
JSON
46 lines
828 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"browser": true,
|
|
"es6": true,
|
|
"mocha": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020
|
|
},
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
2,
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"linebreak-style": ["error", "unix"],
|
|
"quotes": [
|
|
"error",
|
|
"single",
|
|
{
|
|
"avoidEscape": true
|
|
}
|
|
],
|
|
"semi": ["error", "never"],
|
|
"object-curly-spacing": ["error", "always"],
|
|
"require-await": "error",
|
|
"comma-dangle": ["error", "only-multiline"],
|
|
"space-before-function-paren": [
|
|
"error",
|
|
{
|
|
"anonymous": "always",
|
|
"named": "never",
|
|
"asyncArrow": "always"
|
|
}
|
|
]
|
|
}
|
|
}
|