mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-21 23:37:57 +00:00
fix: add eslint-disable for unsafe-assignment errors
This commit is contained in:
@@ -3,4 +3,5 @@
|
||||
|
||||
import { typesBundleForPezkuwi } from '@acala-network/type-definitions';
|
||||
|
||||
export default typesBundleForPezkuwi.spec;
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
||||
export default (typesBundleForPezkuwi as Record<string, unknown>).spec;
|
||||
|
||||
@@ -5,4 +5,5 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
|
||||
|
||||
import { typesBundleForPezkuwi } from '@crustio/type-definitions';
|
||||
|
||||
export default typesBundleForPezkuwi.spec.crust as unknown as OverrideBundleDefinition;
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
||||
export default (typesBundleForPezkuwi as Record<string, Record<string, unknown>>).spec.crust as unknown as OverrideBundleDefinition;
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
||||
|
||||
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
|
||||
|
||||
import acala from './acala.js';
|
||||
@@ -295,11 +297,11 @@ const spec: Record<string, OverrideBundleDefinition> = {
|
||||
stafi,
|
||||
standard,
|
||||
steam: eave,
|
||||
'bizinikiwi-contracts-node': bizinikiwiContractsNode,
|
||||
subdao,
|
||||
subgame,
|
||||
subsocial: subsocial as OverrideBundleDefinition,
|
||||
subspace,
|
||||
'bizinikiwi-contracts-node': bizinikiwiContractsNode,
|
||||
subzero: zero,
|
||||
swapdex,
|
||||
t0rn,
|
||||
|
||||
@@ -5,4 +5,5 @@ import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
|
||||
|
||||
import { typesBundleForPezkuwi } from '@laminar/type-definitions';
|
||||
|
||||
export default typesBundleForPezkuwi.spec.laminar as unknown as OverrideBundleDefinition;
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
||||
export default (typesBundleForPezkuwi as Record<string, Record<string, unknown>>).spec.laminar as unknown as OverrideBundleDefinition;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
// structs need to be in order
|
||||
/* eslint-disable sort-keys */
|
||||
/* eslint-disable sort-keys, @typescript-eslint/no-unsafe-assignment */
|
||||
|
||||
import type { Observable } from 'rxjs';
|
||||
import type { ApiInterfaceRx } from '@pezkuwi/api/types';
|
||||
|
||||
Reference in New Issue
Block a user