We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 933a39a commit b61d21bCopy full SHA for b61d21b
1 file changed
Rules/ConfigurableScriptRule.cs
@@ -7,7 +7,10 @@
7
8
namespace Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic
9
{
10
- public abstract class ConfigurableScriptRule : IScriptRule
+ // This is still an experimental class and we do not want to expose it
11
+ // as a public API as of yet. So we place it in builtinrules project
12
+ // and keep it internal as it consumed only by a handful of rules.
13
+ internal abstract class ConfigurableScriptRule : IScriptRule
14
15
public bool IsRuleConfigured { get; protected set; } = false;
16
0 commit comments