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 419adb8 commit c3ad261Copy full SHA for c3ad261
Engine/Commands/InvokeFormatterCommand.cs
@@ -1,7 +1,6 @@
1
// Copyright (c) Microsoft Corporation. All rights reserved.
2
// Licensed under the MIT License.
3
4
-using Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic;
5
using System;
6
using System.Globalization;
7
using System.Management.Automation;
@@ -14,7 +13,7 @@ namespace Microsoft.Windows.PowerShell.ScriptAnalyzer.Commands
14
13
/// A cmdlet to format a PowerShell script text.
15
/// </summary>
16
[Cmdlet(VerbsLifecycle.Invoke, "Formatter")]
17
- [OutputType(typeof(RuleInfo))]
+ [OutputType(typeof(string))]
18
public class InvokeFormatterCommand : PSCmdlet, IOutputWriter
19
{
20
private const string defaultSettingsPreset = "CodeFormatting";
0 commit comments