Skip to content

Commit 571c006

Browse files
author
Per Kops
committed
chore: formatting code in a few commands
1 parent 381b4d6 commit 571c006

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

src/Atc.CodingRules.Updater.CLI/Commands/OptionsFileCreateCommand.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ public class OptionsFileCreateCommand : AsyncCommand<ProjectCommandSettings>
44
{
55
private readonly ILogger<OptionsFileCreateCommand> logger;
66

7-
public OptionsFileCreateCommand(ILogger<OptionsFileCreateCommand> logger) => this.logger = logger;
7+
public OptionsFileCreateCommand(
8+
ILogger<OptionsFileCreateCommand> logger)
9+
=> this.logger = logger;
810

911
public override Task<int> ExecuteAsync(
1012
CommandContext context,

src/Atc.CodingRules.Updater.CLI/Commands/OptionsFileValidateCommand.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ public class OptionsFileValidateCommand : AsyncCommand<ProjectBaseCommandSetting
44
{
55
private readonly ILogger<OptionsFileValidateCommand> logger;
66

7-
public OptionsFileValidateCommand(ILogger<OptionsFileValidateCommand> logger) => this.logger = logger;
7+
public OptionsFileValidateCommand(
8+
ILogger<OptionsFileValidateCommand> logger)
9+
=> this.logger = logger;
810

911
public override Task<int> ExecuteAsync(
1012
CommandContext context,

src/Atc.CodingRules.Updater.CLI/Commands/RunCommand.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ public class RunCommand : AsyncCommand<RunCommandSettings>
66
{
77
private readonly ILogger<RunCommand> logger;
88

9-
public RunCommand(ILogger<RunCommand> logger) => this.logger = logger;
9+
public RunCommand(
10+
ILogger<RunCommand> logger)
11+
=> this.logger = logger;
1012

1113
public override Task<int> ExecuteAsync(
1214
CommandContext context,

src/Atc.CodingRules.Updater.CLI/Commands/SanityCheckCommand.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ public class SanityCheckCommand : AsyncCommand<ProjectCommandSettings>
44
{
55
private readonly ILogger<SanityCheckCommand> logger;
66

7-
public SanityCheckCommand(ILogger<SanityCheckCommand> logger) => this.logger = logger;
7+
public SanityCheckCommand(
8+
ILogger<SanityCheckCommand> logger)
9+
=> this.logger = logger;
810

911
public override Task<int> ExecuteAsync(
1012
CommandContext context,

0 commit comments

Comments
 (0)