We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d924831 commit 2b92851Copy full SHA for 2b92851
Engine/Formatter.cs
@@ -10,24 +10,11 @@ namespace Microsoft.Windows.PowerShell.ScriptAnalyzer
10
{
11
public class Formatter
12
13
- private Settings settings;
14
-
15
- private Formatter(Settings settings)
16
- {
17
- this.settings = settings;
18
- }
19
20
- public static string Format(string scriptDefinition, Settings settings)
21
22
- throw new NotImplementedException();
23
24
25
public static string Format<TCmdlet>(
26
string scriptDefinition,
27
Settings inputSettings,
28
TCmdlet cmdlet) where TCmdlet : PSCmdlet, IOutputWriter
29
30
- var inputSettings = new Settings(settingsHashtable);
31
var ruleOrder = new string[]
32
33
"PSPlaceCloseBrace",
0 commit comments