Skip to content

Commit 278e4ad

Browse files
authored
🐛 patch lint issues in master branch (#4184)
1 parent c347653 commit 278e4ad

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

eslint.config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -736,6 +736,12 @@ export default [
736736
'import/no-default-export': 'off',
737737
},
738738
},
739+
{
740+
files: ['packages/api/index.ts'],
741+
rules: {
742+
'import/no-unresolved': 'off',
743+
},
744+
},
739745
{},
740746
{
741747
// TODO: fix the issues in these files

packages/api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type {
88
import type { InitConfig } from 'loot-core/server/main';
99

1010
// @ts-ignore: bundle not available until we build it
11-
// eslint-disable-next-line import/extensions, import/no-unresolved
11+
// eslint-disable-next-line import/extensions
1212
import * as bundle from './app/bundle.api.js';
1313
import * as injected from './injected';
1414
import { validateNodeVersion } from './validateNodeVersion';

packages/desktop-client/src/components/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ function AppInner() {
146146
}),
147147
);
148148
}
149-
}, [addNotification, signOut, t, userData?.tokenExpired]);
149+
}, [dispatch, t, userData?.tokenExpired]);
150150

151151
return budgetId ? <FinancesApp /> : <ManagementApp />;
152152
}

upcoming-release-notes/4184.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
category: Maintenance
3+
authors: [MatissJanis]
4+
---
5+
6+
Patch lint issues in master branch.

0 commit comments

Comments
 (0)