Skip to content

Commit b61d21b

Browse files
author
Kapil Borle
committed
Make configurablerules class internal
1 parent 933a39a commit b61d21b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Rules/ConfigurableScriptRule.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77

88
namespace Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic
99
{
10-
public abstract class ConfigurableScriptRule : IScriptRule
10+
// 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
1114
{
1215
public bool IsRuleConfigured { get; protected set; } = false;
1316

0 commit comments

Comments
 (0)