mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2025-10-29 21:57:26 +00:00
29 lines
1.2 KiB
PowerShell
29 lines
1.2 KiB
PowerShell
@{
|
|
# Only diagnostic records of the specified severity will be generated.
|
|
# Uncomment the following line if you only want Errors and Warnings but
|
|
# not Information diagnostic records.
|
|
Severity = @('Error')
|
|
|
|
# Analyze **only** the following rules. Use IncludeRules when you want
|
|
# to invoke only a small subset of the defualt rules.
|
|
# IncludeRules = @('PSAvoidDefaultValueSwitchParameter',
|
|
# 'PSMisleadingBacktick',
|
|
# 'PSMissingModuleManifestField',
|
|
# 'PSReservedCmdletChar',
|
|
# 'PSReservedParams',
|
|
# 'PSShouldProcess',
|
|
# 'PSUseApprovedVerbs',
|
|
# 'PSAvoidUsingCmdletAliases',
|
|
# 'PSUseDeclaredVarsMoreThanAssignments')
|
|
|
|
# Do not analyze the following rules. Use ExcludeRules when you have
|
|
# commented out the IncludeRules settings above and want to include all
|
|
# the default rules except for those you exclude below.
|
|
# Note: if a rule is in both IncludeRules and ExcludeRules, the rule
|
|
# will be excluded.
|
|
ExcludeRules = @(
|
|
# Currently Scoop widely uses Write-Host to output colored text.
|
|
'PSAvoidUsingWriteHost'
|
|
)
|
|
}
|