-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPSScriptAnalyzerSettings.psd1
62 lines (62 loc) · 1.78 KB
/
PSScriptAnalyzerSettings.psd1
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@{
ExcludeRules = @(
'PSAvoidUsingWriteHost'
'PSUseBOMForUnicodeEncodedFile'
'PSAvoidOverwritingBuiltInCmdlets'
'PSUseProcessBlockForPipelineCommand'
'PSUseShouldProcessForStateChangingFunctions'
)
CustomRulePath = 'PSScriptAnalyzerCustomRules.psm1'
IncludeDefaultRules = $True
Rules = @{
PSAvoidGlobalFunctions = @{
Enable = $True
}
PSAvoidLongLines = @{
Enable = $False
MaximumLineLength = 150
}
PSAvoidUsingDoubleQuotesForConstantString = @{
Enable = $True
}
PSAvoidUsingDeprecatedManifestFields = @{
Enable = $True
}
PSPlaceOpenBrace = @{
Enable = $True
OnSameLine = $True
NewLineAfter = $True
IgnoreOneLineBlock = $True
}
PSPlaceCloseBrace = @{
Enable = $True
NoEmptyLineBefore = $True
IgnoreOneLineBlock = $True
NewLineAfter = $False
}
PSUseCompatibleSyntax = @{
Enable = $True
TargetVersions = @('5.1')
}
PSUseConsistentIndentation = @{
Enable = $True
IndentationSize = 4
PipelineIndentation = 'IncreaseIndentationForFirstPipeline'
Kind = 'space'
}
PSUseConsistentWhitespace = @{
Enable = $True
CheckInnerBrace = $True
CheckOpenBrace = $True
CheckOpenParen = $True
CheckOperator = $True
CheckSeparator = $True
CheckParameter = $True
CheckPipe = $True
CheckPipeForRedundantWhitespace = $True
}
PSUseCorrectCasing = @{
Enable = $True
}
}
}