Skip to content

Commit fa820ef

Browse files
chore(deps): update eslint (#1535)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Shinigami92 <chrissi92@hotmail.de>
1 parent c2cc412 commit fa820ef

File tree

3 files changed

+185
-105
lines changed

3 files changed

+185
-105
lines changed

eslint.config.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import { includeIgnoreFile } from '@eslint/compat';
2-
import type { ConfigWithExtendsArray } from '@eslint/config-helpers';
3-
import { defineConfig } from '@eslint/config-helpers';
42
import eslint from '@eslint/js';
53
import stylistic from '@stylistic/eslint-plugin';
64
import eslintPluginVitest from '@vitest/eslint-plugin';
75
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
86
import eslintPluginUnicorn from 'eslint-plugin-unicorn';
7+
import { defineConfig } from 'eslint/config';
98
import { resolve } from 'node:path';
109
import tseslint from 'typescript-eslint';
1110

@@ -34,7 +33,6 @@ export default defineConfig(
3433
//#endregion
3534

3635
//#region prettier
37-
// @ts-expect-error: weird type error
3836
eslintPluginPrettierRecommended,
3937
//#endregion
4038

@@ -53,7 +51,7 @@ export default defineConfig(
5351
//#endregion
5452

5553
//#region typescript-eslint
56-
...(tseslint.configs.strictTypeChecked as ConfigWithExtendsArray),
54+
...tseslint.configs.strictTypeChecked,
5755
{
5856
name: 'typescript-eslint overrides',
5957
languageOptions: {

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,8 @@
8989
},
9090
"devDependencies": {
9191
"@eslint/compat": "2.0.0",
92-
"@eslint/config-helpers": "0.4.2",
93-
"@eslint/js": "9.38.0",
94-
"@stylistic/eslint-plugin": "5.5.0",
92+
"@eslint/js": "9.39.1",
93+
"@stylistic/eslint-plugin": "5.6.1",
9594
"@testcontainers/postgresql": "11.9.0",
9695
"@types/config": "3.3.5",
9796
"@types/node": "20.19.25",
@@ -104,7 +103,7 @@
104103
"dotenv": "17.2.3",
105104
"dotenv-expand": "12.0.3",
106105
"esbuild-fix-imports-plugin": "1.0.23",
107-
"eslint": "9.38.0",
106+
"eslint": "9.39.1",
108107
"eslint-config-prettier": "10.1.8",
109108
"eslint-gitignore": "0.1.0",
110109
"eslint-plugin-prettier": "5.5.4",
@@ -118,7 +117,7 @@
118117
"testcontainers": "11.9.0",
119118
"tsup": "8.5.1",
120119
"typescript": "5.9.3",
121-
"typescript-eslint": "8.46.2",
120+
"typescript-eslint": "8.48.1",
122121
"vitepress": "1.6.4",
123122
"vitest": "3.2.4"
124123
},

0 commit comments

Comments
 (0)