Skip to content

Commit 774ecdb

Browse files
committed
Bump ts-eslint versions
This fixes a warning about running on an unsupported TypeScript version. Also makes sure we do not lint any `.vscode-test` contents if they are present
1 parent e2e7e02 commit 774ecdb

File tree

208 files changed

+16904
-31602
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+16904
-31602
lines changed

.base-sample/eslint.config.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import stylistic from '@stylistic/eslint-plugin';
1111
export default tseslint.config(
1212
{
1313
ignores: [
14-
'out'
14+
'.vscode-test',
15+
'out',
1516
]
1617
},
1718
js.configs.recommended,

.base-sample/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
"@types/vscode": "1.90.0",
4040
"eslint": "^9.13.0",
4141
"typescript": "^5.7.2",
42-
"typescript-eslint": "^8.11.0"
42+
"typescript-eslint": "^8.16.0"
4343
}
4444
}

authenticationprovider-sample/eslint.config.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import stylistic from '@stylistic/eslint-plugin';
1111
export default tseslint.config(
1212
{
1313
ignores: [
14-
'out'
14+
'.vscode-test',
15+
'out',
1516
]
1617
},
1718
js.configs.recommended,

0 commit comments

Comments
 (0)