I try to retrieve all configurable rule with this code, but the '[AvoidAlias'](https://github.com/PowerShell/PSScriptAnalyzer/blob/2114db7ad5bc378e15ce0fc451daa73c426f8bec/RuleDocumentation/AvoidUsingCmdletAliases.md) rule is missing, should not this rule be of the ConfigurableRule type ? ```Powershell $sb= {dir} #Force Dll Loading Invoke-ScriptAnalyzer -ScriptDefinition $sb.ast $BuiltinRules= [System.AppDomain]::CurrentDomain.GetAssemblies()|? location -match 'Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules' $BuiltinRules.GetTypes()|? {$_.IsSubclassOf([Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic.ConfigurableRule])} ```