11 lines
474 B
PowerShell
11 lines
474 B
PowerShell
|
@{
|
||
|
IncludeRules=@('PSAvoidUsingCmdletAliases',
|
||
|
'PSAvoidUsingWMICmdlet',
|
||
|
'PSAvoidUsingPositionalParameters',
|
||
|
'PSAvoidUsingInvokeExpression',
|
||
|
'PSUseDeclaredVarsMoreThanAssignments',
|
||
|
'PSUseCmdletCorrectly',
|
||
|
'PSStandardDSCFunctionsInResource',
|
||
|
'PSUseIdenticalMandatoryParametersForDSC',
|
||
|
'PSUseIdenticalParametersForDSC')
|
||
|
}
|