Skip to content

Commit c0a1e12

Browse files
Formatting
1 parent 446cd2f commit c0a1e12

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

dev-proxy/ProxyHost.cs

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,8 @@ private static Command CreateCertCommand(ILogger logger)
380380
{
381381
var certCommand = new Command("cert", "Manage the Dev Proxy certificate");
382382

383-
var sortedCommands = new[]{
383+
var sortedCommands = new[]
384+
{
384385
CreateCertEnsureCommand(logger)
385386
}.OrderByName();
386387

@@ -399,7 +400,8 @@ private static Command CreateJwtCommand()
399400
{
400401
var jwtCommand = new Command("jwt", "Manage JSON Web Tokens");
401402

402-
var sortedCommands = new[]{
403+
var sortedCommands = new[]
404+
{
403405
CreateJwtCreateCommand()
404406
}.OrderByName();
405407

@@ -502,7 +504,8 @@ private static Command CreateJwtCreateCommand()
502504
)
503505
);
504506

505-
var sortedOptions = new Option[]{
507+
var sortedOptions = new Option[]
508+
{
506509
jwtNameOption,
507510
jwtAudienceOption,
508511
jwtIssuerOption,
@@ -523,7 +526,8 @@ private static Command CreateOutdatedCommand(ILogger logger)
523526
var outdatedShortOption = new Option<bool>("--short", "Return version only");
524527
outdatedCommand.SetHandler(async versionOnly => await OutdatedCommandHandler.CheckVersionAsync(versionOnly, logger), outdatedShortOption);
525528

526-
var sortedOptions = new[]{
529+
var sortedOptions = new[]
530+
{
527531
outdatedShortOption
528532
}.OrderByName();
529533

@@ -535,7 +539,8 @@ private static Command CreateConfigCommand(ILogger logger)
535539
{
536540
var configCommand = new Command("config", "Manage Dev Proxy configs");
537541

538-
var sortedCommands = new[] {
542+
var sortedCommands = new[]
543+
{
539544
CreateConfigGetCommand(logger),
540545
CreateConfigNewCommand(logger),
541546
CreateConfigOpenCommand()

0 commit comments

Comments
 (0)