Skip to content

Commit e193eca

Browse files
Fix lint
1 parent 21994c4 commit e193eca

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"url": "https://github.com/curvefi/curve-lending-js/issues"
1515
},
1616
"scripts": {
17-
"build": "rm -rf lib && tsc -p tsconfig.build.json"
17+
"build": "rm -rf lib && tsc -p tsconfig.build.json",
18+
"lint": "eslint src --ext .ts"
1819
},
1920
"type": "module",
2021
"devDependencies": {

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
async function init (
1818
providerType: 'JsonRpc' | 'Web3' | 'Infura' | 'Alchemy',
1919
providerSettings: { url?: string, privateKey?: string, batchMaxCount? : number } | { externalProvider: ethers.Eip1193Provider } | { network?: Networkish, apiKey?: string },
20-
options: { gasPrice?: number, maxFeePerGas?: number, maxPriorityFeePerGas?: number, chainId?: number } = {},
20+
options: { gasPrice?: number, maxFeePerGas?: number, maxPriorityFeePerGas?: number, chainId?: number } = {}
2121
): Promise<void> {
2222
await _lending.init(providerType, providerSettings, options);
2323
// @ts-ignore

0 commit comments

Comments
 (0)