mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
18 lines
506 B
PowerShell
18 lines
506 B
PowerShell
|
#Documentation: https://github.com/PowerShell/PSScriptAnalyzer/blob/master/docs/markdown/Invoke-ScriptAnalyzer.md#-settings
|
||
|
@{
|
||
|
#CustomRulePath='path\to\CustomRuleModule.psm1'
|
||
|
#RecurseCustomRulePath='path\of\customrules'
|
||
|
#Severity = @(
|
||
|
# 'Error'
|
||
|
# 'Warning'
|
||
|
#)
|
||
|
#IncludeDefaultRules=$true
|
||
|
#ExcludeRules = @(
|
||
|
# 'PSAvoidUsingWriteHost',
|
||
|
# 'MyCustomRuleName'
|
||
|
#)
|
||
|
#IncludeRules = @(
|
||
|
# 'PSAvoidUsingWriteHost',
|
||
|
# 'MyCustomRuleName'
|
||
|
#)
|
||
|
}
|