Skip to content

Commit 8af8daf

Browse files
authored
fix: Fix lint build issues (#227)
* chore: add version 1.7.0 changelog file * chore: fix the failing build * chore: fix the failing build
1 parent 071fbea commit 8af8daf

3 files changed

Lines changed: 14 additions & 16 deletions

File tree

.changeset/whole-maps-go.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@openzeppelin/relayer-sdk': minor
3+
---
4+
5+
fix: fix lint build issues

src/models/plugin-api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ export interface PluginKVStore {
190190
export interface PluginContext {
191191
api: PluginAPI;
192192
kv: PluginKVStore;
193+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
193194
params: any;
194195
}
195196

src/models/solana-rpc-result.ts

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,21 @@
11
// This file is a workaround to generate the desired output.
22
// Workaround for https://github.com/OpenAPITools/openapi-generator/issues/13417
33

4-
// May contain unused imports in some cases
5-
// @ts-ignore
4+
// @ts-expect-error - May contain unused imports in some cases
65
import type { FeeEstimateResult } from './fee-estimate-result';
7-
// May contain unused imports in some cases
8-
// @ts-ignore
6+
// @ts-expect-error - May contain unused imports in some cases
97
import type { GetFeaturesEnabledResult } from './get-features-enabled-result';
10-
// May contain unused imports in some cases
11-
// @ts-ignore
8+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
129
import type { GetSupportedTokensItem } from './get-supported-tokens-item';
13-
// May contain unused imports in some cases
14-
// @ts-ignore
10+
// @ts-expect-error - May contain unused imports in some cases
1511
import type { GetSupportedTokensResult } from './get-supported-tokens-result';
16-
// May contain unused imports in some cases
17-
// @ts-ignore
12+
// @ts-expect-error - May contain unused imports in some cases
1813
import type { PrepareTransactionResult } from './prepare-transaction-result';
19-
// May contain unused imports in some cases
20-
// @ts-ignore
14+
// @ts-expect-error - May contain unused imports in some cases
2115
import type { SignAndSendTransactionResult } from './sign-and-send-transaction-result';
22-
// May contain unused imports in some cases
23-
// @ts-ignore
16+
// @ts-expect-error - May contain unused imports in some cases
2417
import type { SignTransactionResult } from './sign-transaction-result';
25-
// May contain unused imports in some cases
26-
// @ts-ignore
18+
// @ts-expect-error - May contain unused imports in some cases
2719
import type { TransferTransactionResult } from './transfer-transaction-result';
2820

2921
type TransferTransactionResultWithMethod = TransferTransactionResult & {

0 commit comments

Comments
 (0)