PowerShell / PowerShell/vscode-powershell
default settings for PSScriptAnalyzer are different to the CLI
オープン
まだ誰も着手していません。
Area-Script Analysis
Issue-Bug
- 主要言語
- TypeScript
- スター
- 1.9k
- フォーク
- 548
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
Prerequisites
- I have written a descriptive issue title.
- I have searched all open and closed issues to ensure it has not already been reported.
- I have read the troubleshooting guide.
- I am sure this issue is with the extension itself and does not reproduce in a standalone PowerShell instance.
- I have verified that I am using the latest version of Visual Studio Code and the PowerShell extension.
- If this is a security issue, I have read the security issue reporting guidance.
Summary
the default PSScriptAnalyzer config in the vscode extension seems to be different to the default config in the CLI
> Invoke-ScriptAnalyzer .\windows\foo.ps1
RuleName Severity ScriptName Line Message
-------- -------- ---------- ---- -------
PSAvoidUsingWriteHost Warning foo.ps1 1 File 'foo.ps1' uses Write-Host. Avoid using Write-Host
because it might not work in all hosts, does not work when
there is no host, and (prior to PS 5.0) cannot be
suppressed, captured, or redirected. Instead, use
Write-Output, Write-Verbose, or Write-Information.
creating a PSScriptAnalyzerSettings.psd1 file and enabling the rule explicitly seems to fix it:
@{
Severity=@('Error','Warning')
IncludeRules=@('PSAvoidUsingWriteHost')
}
but i would rather not have to configure every single rule in order to have consistent behavior in the CLI and vscode
PowerShell Version
Name Value
---- -----
PSVersion 5.1.22621.6345
PSEdition Desktop
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.22621.6345
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
Name : Visual Studio Code Host
Version : 2025.4.0
InstanceId : 4b4cb36f-0f98-4c1e-97e0-aaf3f2916128
UI : System.Management.Automation.Internal.Host.InternalHostUserInterface
CurrentCulture : en-AU
CurrentUICulture : en-GB
PrivateData : Microsoft.PowerShell.ConsoleHost+ConsoleColorProxy
DebuggerEnabled : True
IsRunspacePushed : False
Runspace : System.Management.Automation.Runspaces.LocalRunspace
Visual Studio Code Version
1.108.0
94e8ae2b28cb5cc932b86e1070569c4463565c37
x64
Extension Version
ms-vscode.powershell@2025.4.0
Steps to Reproduce
- install PSScriptAnalyzer:
Install-Module -Name PSScriptAnalyzer -Force -scope currentuser - create
foo.ps1with the following content:write-host asdf - run
Invoke-ScriptAnalyzer .\foo.ps1and observe that the error is reported only in the CLI but not in vscode
Visuals
Logs
No response
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、拡張機能による PSScriptAnalyzer の呼び出しを追跡し、そのデフォルト値を、報告された Invoke-ScriptAnalyzer .\foo.ps1 の結果と比較します。write-host asdf を含む foo.ps1 で再現します。PSScriptAnalyzerSettings.psd1 ファイルなしで同じデフォルト診断が VS Code に表示されれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- powershell, typescript
- 領域
- devtools
- issue の種類
- バグ
- 難易度
- 3/5
- 見積もり時間
- 1〜2日
- 活発さ
- 静か
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 52/100