Skip to content

Commit 5c2600c

Browse files
committed
REF: lint
1 parent bfb10a0 commit 5c2600c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

class/wallets/abstract-wallet.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/no-explicit-any */
12
import { BitcoinUnit, Chain } from '../../models/bitcoinUnits';
23
import b58 from 'bs58check';
34
import createHash from 'create-hash';

components/navigationStyle.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/no-explicit-any */
12
import React from 'react';
23
import { Image, Keyboard, TouchableOpacity, StyleSheet } from 'react-native';
34
import { Theme } from './themes';

metro.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ module.exports = {
1111
resolver: {
1212
blockList: exclusionList([
1313
// This stops "react-native run-windows" from causing the metro server to crash if its already running
14-
new RegExp(
15-
`${path.resolve(__dirname, 'windows').replace(/[/\\]/g, '/')}.*`,
16-
),
14+
new RegExp(`${path.resolve(__dirname, 'windows').replace(/[/\\]/g, '/')}.*`),
1715
// This prevents "react-native run-windows" from hitting: EBUSY: resource busy or locked, open msbuild.ProjectImports.zip
1816
/.*\.ProjectImports\.zip/,
1917
]),

0 commit comments

Comments
 (0)