Skip to content

Commit

Permalink
chore(deps): update eslint (#3238)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ST-DDT <ST-DDT@gmx.de>
  • Loading branch information
renovate[bot] and ST-DDT authored Nov 3, 2024
1 parent 99d81be commit 290e7c9
Show file tree
Hide file tree
Showing 3 changed files with 149 additions and 124 deletions.
5 changes: 4 additions & 1 deletion eslint.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ const config: ReturnType<typeof tseslint.config> = tseslint.config(
],
'@typescript-eslint/switch-exhaustiveness-check': [
'error',
{ requireDefaultForNonUnion: true },
{
considerDefaultExhaustiveForUnions: true, // we consider default cases for unions valid
requireDefaultForNonUnion: true,
},
],
'@typescript-eslint/unbound-method': 'off',
'@typescript-eslint/unified-signatures': 'off', // incompatible with our api docs generation
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@
],
"devDependencies": {
"@actions/github": "6.0.0",
"@eslint/compat": "1.2.1",
"@eslint/js": "9.13.0",
"@stylistic/eslint-plugin": "2.9.0",
"@eslint/compat": "1.2.2",
"@eslint/js": "9.14.0",
"@stylistic/eslint-plugin": "2.10.1",
"@types/eslint__js": "8.42.3",
"@types/node": "22.8.6",
"@types/sanitize-html": "2.13.0",
Expand All @@ -118,7 +118,7 @@
"@vueuse/core": "11.2.0",
"commit-and-tag-version": "12.5.0",
"cypress": "13.15.1",
"eslint": "9.13.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsdoc": "50.4.3",
"eslint-plugin-prettier": "5.2.1",
Expand All @@ -135,7 +135,7 @@
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "8.11.0",
"typescript-eslint": "8.12.2",
"validator": "13.12.0",
"vitepress": "1.4.3",
"vitest": "2.1.4",
Expand Down
Loading

0 comments on commit 290e7c9

Please sign in to comment.