fix(deps): update @typescript-eslint/* dependencies [ci skip] (#16772)

* fix(deps): update `@typescript-eslint/*` dependencies

* fix lint
This commit is contained in:
かっこかり
2025-11-08 17:30:58 +09:00
committed by GitHub
parent 3a65728fb4
commit ec1120bdaa
7 changed files with 42 additions and 230 deletions

View File

@@ -231,8 +231,8 @@
"@types/vary": "1.1.3",
"@types/web-push": "3.6.4",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "8.46.1",
"@typescript-eslint/parser": "8.46.1",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"aws-sdk-client-mock": "4.1.0",
"cross-env": "7.0.3",
"eslint-plugin-import": "2.32.0",

View File

@@ -14,6 +14,7 @@ export default [
...pluginVue.configs['flat/recommended'],
{
files: ['src/**/*.{ts,vue}'],
ignores: ['**/*.stories.ts'],
languageOptions: {
globals: {
...Object.fromEntries(Object.entries(globals.node).map(([key]) => [key, 'off'])),

View File

@@ -9,8 +9,8 @@
"devDependencies": {
"@readme/openapi-parser": "5.0.2",
"@types/node": "24.9.1",
"@typescript-eslint/eslint-plugin": "8.46.1",
"@typescript-eslint/parser": "8.46.1",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"openapi-types": "12.1.3",
"openapi-typescript": "7.9.1",
"ts-case-convert": "2.1.0",

View File

@@ -39,8 +39,8 @@
"devDependencies": {
"@microsoft/api-extractor": "7.53.1",
"@types/node": "24.9.1",
"@typescript-eslint/eslint-plugin": "8.46.1",
"@typescript-eslint/parser": "8.46.1",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"@vitest/coverage-v8": "3.2.4",
"esbuild": "0.25.10",
"execa": "9.6.0",

View File

@@ -37,6 +37,9 @@ export default [
'no-restricted-imports': ['error', {
paths: [{ name: 'punycode' }],
}],
// 型の情報を利用してlintする必要があるため無効化
// TODO: 有効化検討
'@typescript-eslint/no-misused-promises': 'off',
},
},
];