Skip to content

Commit 78f99bb

Browse files
committed
Merge branch 'main' into release
Conflicts had to be manually resolved mostly via `git checkout --theirs` as we cherry-picked a patch to a previous release.
2 parents 193660b + 817ae25 commit 78f99bb

Some content is hidden

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

49 files changed

+3136
-2558
lines changed

.eslintrc.json

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended",
9+
"plugin:@typescript-eslint/recommended-requiring-type-checking",
10+
"plugin:@typescript-eslint/strict"
11+
],
12+
"overrides": [],
13+
"parser": "@typescript-eslint/parser",
14+
"parserOptions": {
15+
"ecmaVersion": "latest",
16+
"sourceType": "module",
17+
"tsconfigRootDir": ".",
18+
"project": [
19+
"./tsconfig.json"
20+
]
21+
},
22+
"plugins": [
23+
"@typescript-eslint",
24+
"header"
25+
],
26+
"rules": {
27+
"indent": [
28+
"error",
29+
4
30+
],
31+
"quotes": [
32+
"error",
33+
"double"
34+
],
35+
"semi": [
36+
"error",
37+
"always"
38+
],
39+
"@typescript-eslint/no-non-null-assertion": [
40+
"off"
41+
],
42+
"@typescript-eslint/no-unused-vars": [
43+
"error",
44+
{
45+
"argsIgnorePattern": "^_"
46+
}
47+
],
48+
"@typescript-eslint/no-unsafe-argument": [
49+
"off"
50+
],
51+
"@typescript-eslint/no-unsafe-assignment": [
52+
"off"
53+
],
54+
"@typescript-eslint/no-unsafe-call": [
55+
"off"
56+
],
57+
"@typescript-eslint/no-unsafe-member-access": [
58+
"off"
59+
],
60+
"@typescript-eslint/no-unsafe-return": [
61+
"off"
62+
],
63+
"@typescript-eslint/restrict-template-expressions": [
64+
"off"
65+
],
66+
"header/header": [
67+
2,
68+
"line",
69+
[
70+
" Copyright (c) Microsoft Corporation.",
71+
" Licensed under the MIT License."
72+
],
73+
2
74+
]
75+
}
76+
}

.vscodeignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ tools/
1515
!out/main.js
1616

1717
.editorconfig
18+
.eslintrc.json
1819
.gitattributes
1920
.gitignore
2021
.markdownlint.json
2122
.vscodeignore
2223
build.ps1
2324
extension-dev.code-workspace
2425
*.vsix
26+
test-results.xml
2527
tsconfig.json
26-
tslint.json
2728
vscode-powershell.build.ps1

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
### Thursday, October 20, 2022
55

66
This October stable release incorporates a number of bugfixes throughout September and
7-
early October, though is no based on the latest preview, v2022.10.1-preview, as the
7+
early October, though is not based on the latest preview, v2022.10.1-preview, as the
88
refactors involved in enabling TypeScript's strict type checking and ESLint's strict
99
linting will need more testing. However, based on the success of the PowerShell Script
1010
Analyzer's [v1.21.0][pssa-v1.21] release we wanted to get this to you sooner!
@@ -51,6 +51,18 @@ without having to turn off other code lenses.
5151
- ✨ 🚨 [PowerShellEditorServices #1914](https://github.com/PowerShell/PowerShellEditorServices/pull/1914) - Add regression tests for F5 and F8 saving to history.
5252
- ✨ 🙏 [PowerShellEditorServices #1900](https://github.com/PowerShell/PowerShellEditorServices/pull/1900) - Add setting to control references code lens.
5353

54+
## v2022.10.1-preview
55+
### Monday, October 17, 2022
56+
57+
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
58+
59+
- ✨ 🚂 [vscode-powershell #3561](https://github.com/PowerShell/vscode-powershell/pull/4206) - Enable `strict` TypeScript mode .
60+
- 🐛 🔍 [vscode-powershell #4201](https://github.com/PowerShell/vscode-powershell/pull/4203) - Fix automatic focus to temporary debug terminal (if it exists).
61+
62+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices) v3.5.4
63+
64+
No changes.
65+
5466
## v2022.10.0-preview
5567
### Friday, October 07, 2022
5668

extension-dev.code-workspace

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"extensions": {
1313
"recommendations": [
1414
"davidanson.vscode-markdownlint",
15+
"dbaeumer.vscode-eslint",
1516
"editorconfig.editorconfig",
1617
"josefpihrt-vscode.roslynator",
1718
"ms-azure-devops.azure-pipelines",
1819
"ms-dotnettools.csharp",
19-
"ms-vscode.powershell-preview",
20-
"ms-vscode.vscode-typescript-tslint-plugin",
20+
"ms-vscode.powershell-preview"
2121
]
2222
},
2323
"settings": {

0 commit comments

Comments
 (0)