Skip to content

Commit 9874e84

Browse files
authored
Merge pull request Expensify#68464 from shubham1206agra/fix-eslint-3
[NoQA] Fixed ESLint warning max count
2 parents c332249 + e16221d commit 9874e84

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"test:debug": "TZ=utc NODE_OPTIONS='--inspect-brk --experimental-vm-modules' jest --runInBand",
4747
"perf-test": "NODE_OPTIONS=--experimental-vm-modules npx reassure",
4848
"typecheck": "NODE_OPTIONS=--max_old_space_size=8192 tsc",
49-
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=273 --cache --cache-location=node_modules/.cache/eslint",
49+
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=264 --cache --cache-location=node_modules/.cache/eslint",
5050
"lint-changed": "NODE_OPTIONS=--max_old_space_size=8192 ./scripts/lintChanged.sh",
5151
"lint-watch": "npx eslint-watch --watch --changed",
5252
"shellcheck": "./scripts/shellCheck.sh",

src/Expensify.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import type {NativeEventSubscription} from 'react-native';
55
import {AppState, Linking, Platform} from 'react-native';
66
import type {OnyxEntry} from 'react-native-onyx';
77
import Onyx from 'react-native-onyx';
8-
import {InitialURLContext} from '@components/InitialURLContextProvider';
98
import ConfirmModal from './components/ConfirmModal';
109
import DeeplinkWrapper from './components/DeeplinkWrapper';
1110
import EmojiPicker from './components/EmojiPicker/EmojiPicker';
1211
import GrowlNotification from './components/GrowlNotification';
12+
import {InitialURLContext} from './components/InitialURLContextProvider';
1313
import AppleAuthWrapper from './components/SignInButtons/AppleAuthWrapper';
1414
import SplashScreenHider from './components/SplashScreenHider';
1515
import UpdateAppModal from './components/UpdateAppModal';

0 commit comments

Comments
 (0)