Skip to content

Commit 429c2bf

Browse files
committed
chore: remove todo
1 parent a57e7ed commit 429c2bf

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

NF.Tool.ReleaseNoteMaker/NF.Tool.ReleaseNoteMaker.CLI/Commands/Command_Build.cs

-5
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,6 @@ internal sealed class Settings : CommandSettings
5757

5858
public override async Task<int> ExecuteAsync(CommandContext context, Settings setting)
5959
{
60-
// TODO(pyoung): handle stderr
61-
//AnsiConsole.Console = AnsiConsole.Create(new AnsiConsoleSettings
62-
//{
63-
// Out = new AnsiConsoleOutput(Console.Error)
64-
//});
6560
Exception? exOrNull = Utils.GetConfig(setting.Directory, setting.Config, out string baseDirectory, out ReleaseNoteConfig config);
6661
if (exOrNull is not null)
6762
{

NF.Tool.ReleaseNoteMaker/NF.Tool.ReleaseNoteMaker.Common/Config/ReleaseNoteConfig.cs

-4
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,10 @@ public sealed class ReleaseNoteConfigMaker
3232
public bool IsWrap { get; set; } = false;
3333
public bool IsAllBullets { get; set; } = false;
3434

35-
// TODO(pyoung): remove this property
3635
public bool IsSingleFile { get; set; } = true;
3736

3837
public E_END_OF_LINE EndOfLine { get; set; } = E_END_OF_LINE.LF;
3938

40-
// config.package_dir
41-
// public string PackageDirectory{ get; set; } = string.Empty;
42-
4339
public enum E_END_OF_LINE
4440
{
4541
LF = 0,

0 commit comments

Comments
 (0)