PowerShell / PowerShell/vscode-powershell

default settings for PSScriptAnalyzer are different to the CLI

Aperta
#5,385 3 commenti 0 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

Area-Script Analysis Issue-Bug
Lingua principale
TypeScript
Stelle
1.9k
Fork
548
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

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
  1. install PSScriptAnalyzer: Install-Module -Name PSScriptAnalyzer -Force -scope currentuser
  2. create foo.ps1 with the following content:
    write-host asdf
    
  3. run Invoke-ScriptAnalyzer .\foo.ps1 and observe that the error is reported only in the CLI but not in vscode
Visuals
Image
Logs

No response

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Direzione di ricerca

Inizia tracciando l'invocazione di PSScriptAnalyzer da parte dell'estensione e confronta i relativi valori predefiniti con il risultato segnalato di Invoke-ScriptAnalyzer .\foo.ps1. Riproducilo con un foo.ps1 contenente write-host asdf. È completato quando la stessa diagnostica predefinita appare in VS Code senza un file PSScriptAnalyzerSettings.psd1.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Valutazione

Stack tecnologico
powershell, typescript
Ambito
devtools
Tipo di issue
Bug
Difficoltà
3/5
Tempo stimato
1-2 giorni
Stato di attività
Tranquilla
Chiarezza
Abbastanza chiara
Idoneità per principianti
52/100

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.