SublimeLinter-contrib-PSScriptAnalyzer
Sublime Text 的 PowerShell Core Linter
详情
安装次数
- 总计 598
- Win 489
- Mac 66
- Linux 43
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 2 | 2 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 |
Mac | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
自述文件
SublimeLinter-contrib-PSScriptAnalyzer
此 SublimeLinter 的插件提供对 PowerShell 的 PowerShell PSScriptAnalyzer 模块的接口。它将用于具有“PowerShell”语法的文件。
安装
要使用此插件,必须安装 SublimeLinter。
请使用 Package Control 安装分析器插件。
在安装此插件之前,您必须确保以下要求得到满足
- 系统上已安装
pwsh
(PowerShell Core)。 - 已安装 PSScriptAnalyzer 模块。如果没有,可以从 PowerShell 安装它
Install-Module -Name PSScriptAnalyzer
为了使 SublimeLinter 能够执行 pwsh
,您必须确保其路径对 SublimeLinter 可用。文档涵盖了 如何解决 PATH 配置问题 的解决方案。
PSScriptAnalyzer 设置
如果用户的主目录中存在名为 PSScriptAnalyzerSettings.psd1
的文件,则在调用 Invoke-ScriptAnalyzer
cmdlet 时将其作为 PSScriptAnalyzer 的设置文件使用。有关详细信息,请参阅 PSScriptAnalyzer。
设置文件的示例内容
@{
# Select which diagnostic records to show.
# Valid values are: ParseError, Error, Warning, Information
Severity = @('ParseError', 'Error', 'Warning')
ExcludeRules = @(
'PSUseApprovedVerbs'
)
IncludeDefaultRules = $true
}
PSScriptAnalyzer 的设置路径/名称可以自定义
"linters": {
...
"psscriptanalyzer": {
// full path
"settings": "D:\\Scripts\\CustomSettings.psd1"
// environment variables will be expanded
"settings": "%SCRIPTS_DIR%\\CustomSettings.psd1"
// or built-in preset name (beware that linting fails if the name is not a valid preset name)
"settings": "PSGallery"
// default - remove or set to null
"settings": null
}
常规设置
- SublimeLinter 设置: http://sublimelinter.readthedocs.org/en/latest/settings.html
- 分析器设置: http://sublimelinter.readthedocs.org/en/latest/linter_settings.html
待办事项
- 处理给定预设名称不是有效的 PSScriptAnalyzer 预设的情况。现在它只是无法进行分析。