Skip to content

Commit 4bddc79

Browse files
authored
Merge pull request #118 from dwightjack/renovate/major-typescript-eslint-monorepo
chore(deps): update dependency typescript-eslint to v8
2 parents 3222265 + 354b0b0 commit 4bddc79

File tree

6 files changed

+71
-75
lines changed

6 files changed

+71
-75
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.vscode/settings.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,5 @@
2121
"**/.git/subtree-cache/**": true,
2222
"**/node_modules/*/**": true
2323
},
24-
"volar.tsPlugin": true,
25-
"typescript.tsdk": "node_modules/typescript/lib",
26-
"eslint.experimental.useFlatConfig": true
24+
"typescript.tsdk": "node_modules/typescript/lib"
2725
}

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@ export default ts.config(
4545
},
4646
},
4747
prettier,
48+
{ ignores: ['**/src/assets/**'] },
4849
);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"prettier": "3.3.3",
3636
"tailwindcss": "3.4.7",
3737
"typescript": "5.5.4",
38-
"typescript-eslint": "7.18.0",
38+
"typescript-eslint": "8.0.1",
3939
"vite": "5.3.5",
4040
"vite-plugin-pwa": "0.20.1",
4141
"vite-svg-loader": "5.1.0",

pnpm-lock.yaml

Lines changed: 66 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export function createInterval(type = IntervalType.Work, mins = 0): Interval {
6363
};
6464
}
6565

66-
// eslint-disable-next-line @typescript-eslint/ban-types
67-
export function setupNotifications(notify: Function) {
66+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
67+
export function setupNotifications(notify: (...args: any[]) => any) {
6868
return (type: IntervalType, duration: number) => {
6969
const minutes = pluralize(getMinutes(duration), 'minute', 'minutes');
7070

0 commit comments

Comments
 (0)