PowerShell / PowerShell/PSScriptAnalyzer
Format doesn't work for comma `,` separated parameters
未关闭
还没有人认领这个 Issue。
Area - Formatter
Issue - Bug
- 主要语言
- C#
- 星标
- 2.2k
- 派生
- 414
- 平均合并
- 13 小时 1 分钟
- 30 天内合并 PR
- 2
描述
System Details
System Details Output
### VSCode version: 1.51.1 e5a624b788d92b8d34d1392e4c4d9789406efe8f x64
### VSCode extensions:
janisdd.vscode-edit-csv@0.6.0
ms-python.python@2021.2.633441544
ms-toolsai.jupyter@2021.2.576440691
ms-vscode.cpptools@1.1.3
ms-vscode.hexeditor@1.3.0
ms-vscode.powershell@2020.6.0
redhat.vscode-commons@0.0.6
redhat.vscode-xml@0.16.1
### PSES version: 2.2.0.0
### PowerShell version:
Name Value
---- -----
PSVersion 7.1.3
PSEdition Core
GitCommitId 7.1.3
OS Microsoft Windows 10.0.19043
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
Issue Description
Create a PowerShell file, input following script, and hit Alt+Shift+F. The file is not formatted.
$a = [pscustomobject]@{
a=1
b=2
}
$a|Select-Object a,b
Related settings in settings.json:
"powershell.codeFormatting.trimWhitespaceAroundPipe": true,
"powershell.codeFormatting.useCorrectCasing": true,
"powershell.codeFormatting.whitespaceBetweenParameters": true,
Expected Behaviour
The format result should look similar to:
$a = [pscustomobject]@{
a = 1
b = 2
}
$a | Select-Object -Property a, b
Actual Behaviour
The file is unchanged.
Here are some other input/output combinations if I change the script a little bit and hit Alt+Shift+F again:
- Case 1 -- looks well except that the space is removed in
a, b.- Input:
$a = [pscustomobject]@{ a=1 b=2 } $a|Select-Object a, b- Output:
$a = [pscustomobject]@{ a = 1 b = 2 } $a | Select-Object a,b - Case 2 -- the necessary comma
,is removed ina ,b, which makes the code invalid.- Input:
$a = [pscustomobject]@{ a=1 b=2 } $a|Select-Object a ,b- Output:
$a = [pscustomobject]@{ a = 1 b = 2 } $a | Select-Object a b - Case 3 -- the space is removed in
a, b.- Input:
$a = [pscustomobject]@{ a = 1 b = 2 } $a | Select-Object a, b- Output:
$a = [pscustomobject]@{ a = 1 b = 2 } $a | Select-Object a,b - Case 4 -- this is the reverse of Case 3. If I keep hitting
Alt+Shift+F, the file will cycle through Case 3 and 4.- Input:
$a = [pscustomobject]@{ a = 1 b = 2 } $a | Select-Object a,b- Output:
$a = [pscustomobject]@{ a = 1 b = 2 } $a | Select-Object a, b
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
在 PowerShell 文件中使用 Alt+Shift+F,结合逗号分隔的参数和列出的代码格式设置来重现该问题。将格式化程序的输出与预期示例进行比较,包括保留 a, b 中的逗号和空格;当格式化稳定且代码仍然有效时,即表示完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- powershell
- 领域
- tooling
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100