-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPSScriptAnalyzerSettings.psd1
More file actions
32 lines (32 loc) · 1.03 KB
/
Copy pathPSScriptAnalyzerSettings.psd1
File metadata and controls
32 lines (32 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@{
Severity = @('Error', 'Warning')
IncludeDefaultRules = $true
ExcludeRules = @(
# Legacy scripts use approved verbs and local credential variable names
# that require contextual review before enforcement.
'PSAvoidUsingConvertToSecureStringWithPlainText',
'PSUseShouldProcessForStateChangingFunctions'
)
Rules = @{
PSAvoidUsingCmdletAliases = @{
Whitelist = @('where', 'foreach')
}
PSUseConsistentIndentation = @{
Enable = $true
Kind = 'space'
PipelineIndentation = 'IncreaseIndentationForFirstPipeline'
IndentationSize = 4
}
PSUseConsistentWhitespace = @{
Enable = $true
CheckInnerBrace = $true
CheckOpenBrace = $true
CheckOpenParen = $true
CheckOperator = $false
CheckPipe = $true
CheckPipeForRedundantWhitespace = $false
CheckSeparator = $true
CheckParameter = $false
}
}
}